输入npm install 报错npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! [email protected] postinstall: `node scripts/build.js`

输入npm install 

报以下错误

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] postinstall: `node scripts/build.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] postinstall script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

  

这个是因为sass安装时获取源的问题,修改sass安装的源

npm config set sass_binary_site=https://npm.taobao.org/mirrors/node-sass

然后运行

npm install

  

猜你喜欢

转载自www.cnblogs.com/pxblog/p/12444050.html