Syntax Error: Error: Node Sass version 7.0.1 is incompatible with ^4.0.0. 解决方案: 卸载重新安装 卸载 安装 ...
...
2022-03-02 02:05 0 946 推荐指数:
Syntax Error: Error: Node Sass version 7.0.1 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. 原因:node-sass版本过高,卸载重装低版本 1、卸载: npm uninstall ...
linux系统: npm uninstall node-sass npm i -D sass ...
解决方案: 1、npm uninstall node-sass; 2、npm i -D sass; 3、npm run dev; ...
Node Sass version 7.0.1 is incompatible with ^4.0.0. 解决方案输入: cnpm i -D sass 或者 npm i -D sass ...
原因是版本不兼容的问题。。 解决方案: 先卸载原来的,再安装新的版本: npm uninstall node-sass pm install --save-dev node-sass@4.14.1 ...
node-sass@version 这样重新安装了一下,项目可以运行起来了。 我自己是用这个版本运行成功的 cnpm in ...