最近jenkins拉包總是報錯
內(nèi)容:info There appears to be trouble with your network connection. Retrying...
并且還會提示個包超時瘫寝,比如:error An unexpected error occurred: "https://registry.npmjs.org/ant-design-vue/-/ant-design-vue-3.2.15.tgz: ETIMEDOUT".
所以針對此用以下方式(我用的yarn)番甩,測試可用。
npm config set registry https://registry.npm.taobao.org --global
npm config set disturl https://npm.taobao.org/dist --global
yarn config set registry https://registry.npm.taobao.org --global
yarn config set disturl https://npm.taobao.org/dist --global
在yarn包的時候加上超時也可以,就是要很久
yarn install --network-timeout 1000000
最后
yarn.lock這種文件看下依賴的源是不是國內(nèi)的,不是的話全改就行了(有效)