Running a project with Vue3 / Quasar2 / Vite in development mode fails after update. ``` // node_modules/graphql/jsutils/instanceOf.mjs globalThis.process && globalThis.process.env.NODE_ENV === 'production' ``` is compiled to ``` var instanceOf = globalThis.process && globalThis."development" === "production" ? function instanceOf2(value, constructor) { ... } ``` Changing ``` globalThis.process && globalThis.process.env.NODE_ENV === 'production' ``` to ``` globalThis.process && globalThis.process.env['NODE_ENV'] === 'production' ``` solves the problem for me.