编程语言
首页 > 编程语言> > npm install node-sass死活安装不上,最后终于搞定

npm install node-sass死活安装不上,最后终于搞定

作者:互联网

在项目内添加一个 .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-sass 和 phantomjs 时都能自动从淘宝源上下载,但是在使用npm publish的时候要把 registry 这一行给注释掉,否则就会发布到淘宝源上去了。

标签:npm,node,sass,phantomjs,registry,org
来源: https://blog.csdn.net/qq_33226029/article/details/116244049