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 ?
1 Answer
This github issue recommends removing your node_modules folder and re-running npm install:
rm -rf node_modules && npm install
2 Comments
dmssDonkey
Thank you It works, but could you explain what causes this issue ? because normally Vue cli works fine but sometimes it has error like this.
kakyo
I did as told but the problem persists: open localhost:8080 gives me the exact problem.