James Daniels
James Daniels
Great feedback! Thanks. We should test for dependencies of this file and pack them into the cloud function.
Plan of action: rather than just copying during the build step, we should webpack (or equivalent) the next.config.js. Mark all NPM prod dependencies as external and output file to `.firebase/SITE/functions/next.config.json`
We should do the same for Nuxt.
This has been addressed in the latest version of the tooling https://firebase.google.com/docs/hosting/nextjs
Astro is moving to Vite, since we have first-class Vite support in firebase-tools now it will be supported (for non-SSR use cases ATM) out of box. We'll look into a...
Internationalization is on our short list! Thanks for giving it a spin.
Interesting… we’ll investigate.
If I were to guess, it’s that your pre-rendered pages are transformed into paths and .html files in a way that aren’t getting picked up by hosting, so all the...
The root cause here was the cleanUrls setting. cleanUrls is now default true for web frameworks in the[ latest version of the preview integration](https://firebase.google.com/docs/hosting/nextjs).
I did not realize the config file was optional, interesting.