美文网首页
npm install node-sass 安装不上

npm install node-sass 安装不上

作者: 幽涯 | 来源:发表于2017-06-11 12:18 被阅读0次

解决方法:
1、使用淘宝镜像完成安装

$ npm install -g cnpm --registry=https://registry.npm.taobao.org
$ cnpm install node-sass

2、在项目内添加一个 .npmrc 文件:

phantomjs_cdnurl=http://cnpmjs.org/downloads
sass_binary_site=https://npm.taobao.org/mirrors/node-sass/
registry=https://registry.npm.taobao.org

然后使用 npm install 安装 node-sassphantomjs 时都能自动从淘宝源上下载
但是 npm publish 的时候要把 registry 这一行注释掉,否则会发布到淘宝源上

相关文章

网友评论

      本文标题:npm install node-sass 安装不上

      本文链接:https://www.haomeiwen.com/subject/ncshqxtx.html