Contents
解决方法一:使用淘宝镜像源
由于国内网络环境的问题,这个下载时间可能会很长,甚至导致超时失败。解决方式使用国内淘宝镜像源,
设置全局镜像源
1npm config set sass_binary_site https://npm.taobao.org/mirrors/node-sass/
yarn 方式
1yarn config set sass_binary_site https://npm.taobao.org/mirrors/node-sass/
安装失败后重新安装问题
安装失败后可以先卸载再重新安装
1npm uninstall node-sass
1yarn remove node-sass
重新安装
1 npm install node-sass or
2 yarn add node-sass