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?
P粉1460805562023-12-22 13:38:49
OP fixed the issue by upgrading from Node v16.18.0
to v18.12.1
.
Mainly use the current LTS: https://nodejs.org/en/ (as recommended by the documentation)