5π
β
I solved my issue by pasting the following code inside the vite
object of the nuxt.config.ts.
vite: {
define: {
"process.env.DEBUG": false,
"window.global": {},
},
resolve: {
alias: {
"./runtimeConfig": "./runtimeConfig.browser", //fix production build
},
},
},
π€Ali Raza
Source:stackexchange.com