SSR Nuxt app returning 500 globally when deployed, working locally.
The build seems to go through without issue, and isn't logging anything that catches my eye. We currently deploy the same stack statically with nuxt generate and it works, but when updating to ssr and running nuxt build, we are seeing 500 errors. Here is a build for reference: https://feature-ssr.rhone-nacelle.pages.dev/. Any ideas welcome. I have tried a few different configuration settings without any luck.
Function logs aren't super helpful, but this is what I'm seeing:
{
"message": [
"[request error] [unhandled] [GET] https://feature-ssr.rhone-nacelle.pages.dev/\n",
{
"message": "n is not a function",
"statusCode": 500
}
],
"level": "error",
"timestamp": 1743024759094
},
5 Replies
Update after adding nitro config:
nitro: {
preset: "cloudflare-pages",
cloudflare: {
deployConfig: true,
nodeCompat: true
}
},
I get the following lines of errors at the end of the build:
17:42:45.507 [info] [nitro] Using auto generated worker name:
17:42:46.679 ▲ [WARNING] Using redirected Wrangler configuration. 17:42:46.680
17:42:46.680 Configuration being used: "../../../buildhome/repo/dist/_worker.js/wrangler.json" 17:42:46.680 Original user's configuration: "<no user config found>" 17:42:46.680 Deploy configuration file: "../../../buildhome/repo/.wrangler/deploy/config.json" 17:42:46.680
17:42:46.680
17:42:46.680 Found wrangler.json file. Reading build configuration... 17:42:46.709
17:42:46.711 ✘ [ERROR] Processing ../../../buildhome/repo/dist/_worker.js/wrangler.json configuration: 17:42:46.711
17:42:46.711 - Expected "name" to be of type string, alphanumeric and lowercase with dashes only but got "Rhone-Apparel-rhone-nacelle". Removing the deployConfig: true solves the above error, but I'm back with my 500 errors now.
Rhone-Apparel-rhone-nacelle
17:42:45.507 [info] Generated dist/_worker.js/wrangler.json
17:42:45.507 [info] Generated .wrangler/deploy/config.json
17:42:45.507 [info] Generated dist/_routes.json
17:42:45.507 [info] [nitro] Adding Nitro fallback to _headers
to handle all unmatched routes.
17:42:45.507 [info] Generated dist/_headers
17:42:45.508 [info] [nitro] Adding Nitro fallback to _redirects
to handle all unmatched routes.
17:42:45.508 [info] Generated dist/_redirects
17:42:45.508 [success] [nitro] You can preview this build using npx wrangler --cwd dist/ pages dev
17:42:45.508 [success] [nitro] You can deploy this build using npx wrangler --cwd dist/ pages deploy
17:42:45.687 Finished
17:42:46.591 Checking for configuration in a Wrangler configuration file (BETA)
17:42:46.59217:42:46.679 ▲ [WARNING] Using redirected Wrangler configuration. 17:42:46.680
17:42:46.680 Configuration being used: "../../../buildhome/repo/dist/_worker.js/wrangler.json" 17:42:46.680 Original user's configuration: "<no user config found>" 17:42:46.680 Deploy configuration file: "../../../buildhome/repo/.wrangler/deploy/config.json" 17:42:46.680
17:42:46.680
17:42:46.680 Found wrangler.json file. Reading build configuration... 17:42:46.709
17:42:46.711 ✘ [ERROR] Processing ../../../buildhome/repo/dist/_worker.js/wrangler.json configuration: 17:42:46.711
17:42:46.711 - Expected "name" to be of type string, alphanumeric and lowercase with dashes only but got "Rhone-Apparel-rhone-nacelle". Removing the deployConfig: true solves the above error, but I'm back with my 500 errors now.
I have the same issue but i get 500 - r is not a function
I'm not too sure we can really help that much here
I guess I'd probably just recommend building the app and looking at the built code to see if you can figure out where it's happening
But this is probably something that needs to be reported to Nuxt folk
We just take what they build and execute it, we aren't involved with building or anything
Any builds I run locally are successful. I'm unsure what command CF is running behind the scenes to start the server, however. It does log
16:58:19.733 [success] [nitro] You can preview this build using
npx wrangler --cwd dist/ pages dev
16:58:19.733 [success] [nitro] You can deploy this build using npx wrangler --cwd dist/ pages deploy
When I try the first locally it fails saying it needs an entry point, and if I append dist/ to the end it fails to serve correctly so I'm wondering if I need to point somewhere else. Where I'm getting a nuxt 500 screen it seems like the entry would be correct, but hard to know where I can't reproduce elsewhere. If you know what command is run to start the server that would be helpful otherwise I will try and connect with Nuxt for further insights.Ended up being an outdated dependency I added minify:false to my nitro config so I could see the actual error which matched with this issue. Updating date-fns solved it for me https://github.com/nitrojs/nitro/issues/1889
GitHub
Issues with bundling
date-fns
· Issue #1889 · nitrojs/nitroEnvironment node 20.9 nitro 2.7.2 Reproduction https://stackblitz.com/edit/github-yysl4x?file=routes/index.ts,nitro.config.ts You'll need to download locally to run wrangler Describe the bug So...