Delete package-lock.json and node_module folders
npm cache clean -f
again
npm install
▼ Reference site If the file name is too long to delete https://increment-log.com/windows-is-long-file-name-cannot-delete/ If the directory is local http://replication.hatenablog.com/entry/20130118/1358561978
If you get a permission error during npm install
npm cache clean -f
If that doesn't help
npm install -g [email protected]
https://qiita.com/MasamotoMiyata/items/0fdad60d80687fb01909
JavaScript heap out of memory when building Vue.js app
npm run build NODE_OPTIONS=--max_old_space_size=4096
npm run serve NODE_OPTIONS=--max_old_space_size=4096
Recommended Posts