Deploy my project to firebase hosting &SSR in cloud functions doesn’t work on product.
Would you tell me this Answer.
Setting is bellow.
#firebase.json
!snip
"hosting": {
"predeploy": [
"npm --prefix src run build && rm -rf public/* && mkdir -p public/_nuxt && cp -r src/.nuxt/dist/client/ public/_nuxt && cp -a src/static/. public/"
],
"public": "public",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"function": "ssrapp"
}
]
},
!snip
#cloud functions
const functions = require('firebase-functions');
const { Nuxt } = require('nuxt-start');
const nuxtConfig = require('./nuxt.config.js’)
const config = {
...nuxtConfig,
dev: false,
debug: false,
buildDir: 'nuxt',
};
const nuxt = new Nuxt(config);
exports.ssrapp = functions.https.onRequest(async (req, res) => {
await nuxt.ready();
nuxt.render(req, res);
});
Once it’s work, but now it’s not work.
(Server error)
question from:
https://stackoverflow.com/questions/65896153/how-to-deploy-on-firebase-cloud-functions-nuxtapp-ssr 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…