NUXT. Vue. Error 500 while accessing /api/login, while it works fine when running dev server.
Hi,
I am using kinde with Nuxt, Vue, Nitro. While it works fine with run dev, it's giving server error 500 when running the build.
Same errors in browser console:
`GET http://localhost:3000/api/login/ 500 (Internal Server Error)
10:08:19.956 w8GjRO4B.js:2 [nuxt] error caught during app initialization Error: Page not found: /api/login/
at tn (w8GjRO4B.js:2:20035)
at w8GjRO4B.js:6:31212
at o (w8GjRO4B.js:2:18201)
at Object.runWithContext (qTkC9Z7f.js:13:19110)
at so (w8GjRO4B.js:2:18240)
at w8GjRO4B.js:2:16245
at Or.run (qTkC9Z7f.js:9:267)
at Object.runWithContext (w8GjRO4B.js:2:16237)
at w8GjRO4B.js:6:31190
at w8GjRO4B.js:6:20763
4 Replies
My nuxt config:
and .env
I am sure I am missing some setting here. Can you please point me to the right direction?
Thank you.
Are you using a Kinde SDK? If so can you tell me which one and what version?
Also sorry for the delayed response.
I just ran into this issue myself, the .env file is not loaded in production:
"In production runtime, you should use platform environment variables and .env is not used."
https://nuxt.com/docs/api/composables/use-runtime-config#using-the-env-file.
So either set the environment variables in whatever platform you are using to run the app, or tell Node to load the .env file as part of the startup command, eg: "node --env-file=.env .output/server/index.mjs".
The --env-file flag requires node ^20.6.0.
( I know, using .env files in production is discourage etc etc).
Nuxt
useRuntimeConfig · Nuxt Composables
Access runtime config variables with the useRuntimeConfig composable.
Hi @Asad Malik, I hope you're doing well. I just wanted to check if you're still experiencing the issue. Please let me know if you need any further assistance.