最近公司项目,我先在自己的mac笔记本上搭建了工程,然后,移植到公司电脑上就出问题了,npm install
死活安装不了node-sass
,纠结很久,终于找到解决方法。
使用npm i node-sass
编译时报错,解决方法就是使用淘宝的镜像安装
如果我们这么写:
set SASS_BINARY_SITE=https://npm.taobao.org/mirrors/node-sass/ && npm install node-sass
是没有什么用的,换一种写法:
npm install --save node-sass --registry=https://registry.npm.taobao.org --disturl=https://npm.taobao.org/dist --sass-binary-site=http://npm.taobao.org/mirrors/node-sass
成功安装,图片控请看下面: