You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is most likely the same problem as quasarframework/quasar#16060
These are the messages for the same error in different browsers:
SyntaxError: Unexpected string (Chrome)
SyntaxError: missing name after . operator (Firefox)
SyntaxError: Unexpected token '"'. Expected a property name after '.'. (Safari)
graphql package accesses process.env like globalThis.process.env.NODE_ENV which gets replaced to globalThis."development"/globalThis."production" during dev/build process. So, either the graphql package needs to address this, or we can work around it by converting globalThis.process.env.NODE_ENV as a whole. I will create a PR to apply this workaround.
After add apollo to project with ext command and add it to boot section of quasar config this error ocurred:
[Quasar] boot error: SyntaxError: missing name after . operator
The text was updated successfully, but these errors were encountered: