My Glitch is error


My project suddenly stopped and couldn’t restart and just stuck at “node v12.0.0, with pnpm” and it couldn’t anymore even though I had used the command refresh and enable-pnpm, can anyone explain right? or have a solution?

Check your package.json file. Make sure you have a scripts object and a main string.

Example:

{
"scripts":{
   "start":"node server.js"
},
"main":"node server.js"
}

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.