Reputation: 23
After i created a project with Vue cli and it give me this error Module build failed: Error: ENOENT: no such file or directory, open '/home/Desktop/static-web-v1/node_modules/core-js/modules/es.array.iterator.js'
What is wrong and how to fix it ?
Upvotes: 2
Views: 1519
Reputation: 89
This github issue recommends removing your node_modules
folder and re-running npm install
:
rm -rf node_modules && npm install
Upvotes: 2