npm ERR! xxxx@0.1.0 serve:vue-cli-service serve
npm ERR! This is probably not a problem with npm.There is likely additional logging output above
今天在繼續寫專案的過程中安裝了一個依賴,
然後安裝完後再用 npm run serve 命令跑專案時得到了如下報錯:
然後研究了一會兒,較完美的解決方法就是刪除node_modules資料夾然後再重新npm install。
在vscode中在你專案的隨便一個資料夾右鍵找到你專案所在的地方
然後刪除node_modules資料夾,刪除的時候可能需要計算機管理員許可權
然後回到命令列執行npm install下載完成後再npm run serve就可以正常執行了