Yarn 安装 node-sass 依赖导致 Build Fresh Packages 太慢的问题
yarn的设置与npm不一样,在 .yarnrc 中进行
解决办法
在 项目目录下新建
.yarnrc
文件
添加以下代码
registry "https://registry.npm.taobao.org"
sass_binary_site "https://npm.taobao.org/mirrors/node-sass/"
2. 如果想修改服务器或本机的配置
执行
yarn config set registry https://registry.npm.taobao.org
yarn config set sass_binary_site https://npm.taobao.org/mirrors/node-sass/
然后会发现执行 yarn 的时候速度提升 10 倍~
如果还是不行,可以使用 offline mirror
node 对
node-sass
的支持
node-sass 出错
- https://www.cnblogs.com/helios-fz/p/12656644.html
- https://laracasts.com/discuss/channels/javascript/npm-rebuild-node-sass-fails