本文主要是介绍前端问题总结(三)Module build failed: Error: Node Sass version 6.0.0 is incompatible with ^4.0.0.,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
npm run dev 提示如下错误
Module build failed: Error: Node Sass version 6.0.0 is incompatible with ^4.0.0.
查了些文档有说是版本过高;
其实根本原因是高版本的配置变了,当然直接改配置不够简便
简单解决方案:
1、卸载: npm uninstall node-sass
2、安装: npm install node-sass@4.14.1
3、运行:npm run dev
这篇关于前端问题总结(三)Module build failed: Error: Node Sass version 6.0.0 is incompatible with ^4.0.0.的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!