Home > Net >  Server returns 500 for request to http://localhost:3000/__nuxt_vite_node__/manifest failed, reason:
Server returns 500 for request to http://localhost:3000/__nuxt_vite_node__/manifest failed, reason:

Time:11-08

Created empty project of nuxt 3.0.0-rc13 using pnpm dlx nuxi init nuxt-app, dependencies installed using pnpm install --shamefully-hoist.

Deployment server started using pnpm dev but requests end with 500. Error says request to http://localhost:3000/__nuxt_vite_node__/manifest failed, reason: connect ETIMEDOUT 127.0.0.1:3000 ().

According to documentation there is need to set NODE_TLS_REJECT_UNAUTHORIZED=0 in the environment if machine is using a self-signed certificate in development.

How do I verify such a thing?
Could that be the solution to the error above?

CodePudding user response:

OP fixed the issue by upgrading from Node v16.18.0 to v18.12.1.

Mainly using the current LTS: https://nodejs.org/en/ (as the docs recommend)

CodePudding user response:

Update of Node.js from 16.18.0 to 18.12.1 fixed the issue.

  • Related