Hi, it’s because your start
script in the package.json is trying to execute called server.js
file that does not exist in the same directory as the package.json. You need to replace server.js
with the name of your main JS entry file.
Hi, it’s because your start
script in the package.json is trying to execute called server.js
file that does not exist in the same directory as the package.json. You need to replace server.js
with the name of your main JS entry file.