index.js:
const port = process.env.PORT || 3000;
server package.json:
"start": "node index.js",
"server": "nodemon index.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
client package.json:
"proxy": "http://localhost:5000",
I am starting it with npm run dev
Any idea where the problem might be?
error:
Error: Cannot find module '.../index.js'
try to map the subpath of the client project: