on-rest my project was working great untill I delete my node_modules file and try to re-install npm package.
I am getting this error
./node_modules/
In my case the problem was in relative paths and complex project structure, so that I had to specify exact location of my node_modules directory:
module.exports = { resolve: { modules: [ path.resolve(__dirname, "node_modules") ], ...