解决使用 yarn 安装 node-sass 时速度过慢的问题

1.

在项目根目录下新建.yarnrc 文件

添加以下文件:

1
2
registry "https://registry.npm.taobao.org"
sass_binary_site "https://npm.taobao.org/mirrors/node-sass/"

2.

如果想修改服务器或本机的配置

执行:

1
2
3
4


yarn config set registry https://registry.npm.taobao.org
yarn config set sass_binary_site https://npm.taobao.org/mirrors/node-sass/
thank u !