Is there a possibility to deploy a cloud function that allows for server-side rendering with Nuxt on Firebase? The issue lies in the fact that the Node version used on Firebase is 6.11.1 while the minimum required Node version for Nuxt versions 1 and above is 8. Every time I attempt to deploy the function, I encounter an error like this:
https://i.sstatic.net/SjSUa.png
I have also included Babel configuration as shown below, but unfortunately, it still does not work.
babel: {
'presets': [
'es2015',
'stage-0'
],
plugins: [
['transform-runtime', {
'polyfill': true,
'regenerator': true
}]
]
}