npm install失敗

qq_36283674發表於2020-01-30

node-sass無法下載導致構建失敗
由於node-sass的源使用的是Github上面的,經常無法訪問,我們構建的時候需要單獨設定node-sass的下載地址。

linux

SASS_BINARY_SITE=https://npm.taobao.org/mirrors/node-sass/ npm install node-sass

window

set SASS_BINARY_SITE=https://npm.taobao.org/mirrors/node-sass&& npm install node-sass
複製程式碼有些依賴無法下載導致構建失敗
由於npm源訪問慢的問題,有些源可能會無法下載,改用淘寶的npm源即可解決。

設定為淘寶的映象源

npm config set registry https://registry.npm.taobao.org

設定為官方映象源

npm config set registry https://registry.npmjs.org

相關文章