We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
My nuxt.config snippet build: { publicPath: "/assets/", extractCSS: true, /* ** Run ESLint on save */ extend(config, ctx) { if (ctx.isDev && ctx.isClient) { // config.module.rules.push({ // enforce: 'pre', // test: /\.(js|vue)$/, // loader: 'eslint-loader', // exclude: /(node_modules)/ // }) } } }, buildDir: "../prod/server/nuxt", plugins: ['~/plugins/script'],
build: { publicPath: "/assets/", extractCSS: true, /* ** Run ESLint on save */ extend(config, ctx) { if (ctx.isDev && ctx.isClient) { // config.module.rules.push({ // enforce: 'pre', // test: /\.(js|vue)$/, // loader: 'eslint-loader', // exclude: /(node_modules)/ // }) } } }, buildDir: "../prod/server/nuxt", plugins: ['~/plugins/script'],
It's work normally when using not adding buildDir, but we cannot deploy to firebase, But when adding it will result this error:
My Plugins `import Vue from 'vue' import VS2 from 'vue-script2'
Vue.use(VS2) ` This is only happen when integrate with Firebase SSR,
Thanks
The text was updated successfully, but these errors were encountered:
Hi @asyrafduyshart Were you able to solve this problem? I am facing the same issue.
Sorry, something went wrong.
+1
No branches or pull requests
My nuxt.config snippet
build: { publicPath: "/assets/", extractCSS: true, /* ** Run ESLint on save */ extend(config, ctx) { if (ctx.isDev && ctx.isClient) { // config.module.rules.push({ // enforce: 'pre', // test: /\.(js|vue)$/, // loader: 'eslint-loader', // exclude: /(node_modules)/ // }) } } }, buildDir: "../prod/server/nuxt", plugins: ['~/plugins/script'],
It's work normally when using not adding buildDir, but we cannot deploy to firebase,
But when adding it will result this error:
My Plugins
`import Vue from 'vue'
import VS2 from 'vue-script2'
Vue.use(VS2)
`
This is only happen when integrate with Firebase SSR,
Thanks
The text was updated successfully, but these errors were encountered: