1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| npm install -g yarn
# 删除代理
npm config rm proxy
npm config rm https-proxy
# 指定源
yarn | npm config set registry https://registry.npm.taobao.org
yarn | npm config set disturl https://npm.taobao.org/dist
yarn config set sass-binary-site http://npm.taobao.org/mirrors/node-sass
yarn
|