解决 Error:Node Sass version 6.0.0 is incompatible with ^4.0.0

此错误来自sass-loader。semver不匹配,因为node-sass @latest为v5.0.0,而sass-loader期望值为^ 4.0.0。
他们的存储库中存在一个未解决的问题,需要对其进行修复。
解决方案:
卸载node-sass

npm uninstall node-sass  // 如果这边卸载报错的话,建议直接在package.json 中把 node-sass 改成4.14.1 在从文件夹中删除node_module文件夹 删除后再npm install

 

上一篇:React中less无法使用,less如何配置(暴力简单)


下一篇:解决各种 npm install 报错问题