npm run dev 的正確使用姿勢

nbutluo發表於2021-01-09

想必使用window平臺開發Laravel專案的童鞋在面對構建前端工作流時出現很多問題,現將自己遇到填坑方式分享與大家

開發環境: win10、Homestead

準備工作

win10 使用管理員許可權開啟 Git 命令列終端(切記)
homestead 環境中最好是切換到 sudo

vagrant ssh 

登入成功後切換到專案路徑

安裝node_modules

sudo yarn install --no-bin-links

如果報錯 The engine “node” is incompatible with this module,執行如下命令
yarn config set ignore-engines true

繼續執行如下命令

sudo yarn install --no-bin-links
sudo yarn add cross-env --save --no-bin-links
sudo yarn add vue-template-compiler --save-dev --production=false --no-bin-links

最後編譯生成 css與js 檔案

sudo npm run watch-poll

一點宣告與建議

也沒啥,簡而言之的就是條件許可的話換黑Mac吧,避免陷入環境之坑!

本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章