Use pnpm dlx nuxi init nuxt-app
Create an empty project of nuxt 3.0.0-rc13, and use pnpm install --shameously-hoist
to install dependencies.
The deployment server started using pnpm dev
but the request ended with 500. The error shows The request to http://localhost:3000/__nuxt_vite_node__/manifest failed, reason: Connection ETIMEDOUT 127.0.0.1:3000 ()
. < /p>
According to the documentation, if the machine is using a self-signed certificate in development, you need to set NODE_TLS_REJECT_UNAUTHORIZED=0
in the environment.
How to verify something like this?
Will this resolve the above error?
Node.js updated from 16.18.0 to 18.12.1 fixes this issue.
OP fixed the issue by upgrading from Node
v16.18.0
tov18.12.1
.Mainly use the current LTS: https://nodejs.org/en/ (as recommended by the documentation)