首页 > 其他 > 详细

启动vue项目失败,报错Failed at the node-sass@4.14.1 postinstall script.

时间:2020-06-07 21:00:54      阅读:801      评论:0      收藏:0      [点我收藏+]

在启动vue项目的时候报错

报错信息如下:

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

找不到sass,查看node-sass文件,里面没有文件。

所以在npm install前设置sass源。

解决方案:直接在当前目录下进行node-sass 的数据源设置

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

安装依赖:

# 建议不要直接使用 cnpm 安装依赖,会有各种诡异的 bug。可以通过如下操作解决 npm 下载速度慢的问题

npm install --registry=https://registry.npm.taobao.org

# 启动服务

npm run dev

 
安装依赖:
# 建议不要直接使用 cnpm 安装依赖,会有各种诡异的 bug。可以通过如下操作解决 npm 下载速度慢的问题 npm install --registry=https://registry.npm.taobao.org

启动vue项目失败,报错Failed at the node-sass@4.14.1 postinstall script.

原文:https://www.cnblogs.com/xiaodangshan/p/13061618.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!