windows下面安装node-sass,确实令人头痛,正确姿势如下:
查看镜像
# npm命令
npm config get registry
# yarn命令
yarn config get registry
修改为淘宝镜像
# npm命令
npm config set registry http://registry.npm.taobao.org/
# yarn命令
yarn config set registry http://registry.npm.taobao.org/
此时,正常情况再安装node-sass都可以成功,如果安装还报错,则进入下面第二步。安装编译windows平台编译环境
npm install -g node-gyp
npm install --global --production windows-build-tools
npm i node-sass --sass_binary_site=https://npm.taobao.org/mirrors/node-sass/
以上三步,基本保证node-sass安装成功!
原文:https://www.cnblogs.com/jone-chen/p/14275888.html