Vue報錯Module build failed: Error: Node Sass version 7.0.1 is incompatible with 4.0.0.解決方案
運行vue項目報錯 Module build failed
Module build failed (from ./node_modules/sass-loader/dist/cjs.js):
很長一段
查了一下 大概是我之前重裝node導致的,重新安裝一下node-sass就可以了
Module build failed (from ./node_modules/sass-loader/dist/cjs.js): Error: Missing binding D:\project\chinacarbonYun\node_modules\node-sass\vendor\win32-x64-72\binding.node Node Sass could not find a binding for your current environment: Windows 64-bit with Node.js 12.x Found bindings for the following environments: - Windows 64-bit with Node.js 10.x This usually happens because your environment has changed since running `npm install`. Run `npm rebuild node-sass` to download the binding for your current environment. at module.exports (D:\project\chinacarbonYun\node_modules\node-sass\lib\binding.js:15:13) at Object.<anonymous> (D:\project\chinacarbonYun\node_modules\node-sass\lib\index.js:14:35) at Module._compile (internal/modules/cjs/loader.js:1158:30) at Object.Module._extensions..js (internal/modules/cjs/loader.js:1178:10) at Module.load (internal/modules/cjs/loader.js:1002:32) at Function.Module._load (internal/modules/cjs/loader.js:901:14) at Module.require (internal/modules/cjs/loader.js:1044:19) at require (internal/modules/cjs/helpers.js:77:18) at getDefaultSassImplementation (D:\project\chinacarbonYun\node_modules\sass-loader\dist\getDefaultSassImplementation.js:24:10) at getSassImplementation (D:\project\chinacarbonYun\node_modules\sass-loader\dist\getSassImplementation.js:19:72) at Object.loader (D:\project\chinacarbonYun\node_modules\sass-loader\dist\index.js:40:61)
解決辦法:
// 重建軟件包 npm rebuild node-sass
如果還是不行可以參考下面的文章
錯誤提示:
解決方案:
找到問題所在:Module build failed: Error: Node Sass version 7.0.1 is incompatible with ^4.0.0.
這是由于Sass的版本過高導致,所以根據(jù)提示將版本改為較低的版本就可以了,我這里是改為4.0.0版本。
下面是怎么改版本:
1.首先在IDE中找的package.json文件:
這是package.json文件
2. 然后打開該文件找到“sass-loader”,修改版本即可,這里修改成4.0.0 :
3.在(終端)中先輸入:ctrl+c在點yes終止運行
4.在(終端)中先輸入:npm install如果未成功在輸入cnpm install
5.最后運行:npm run dev成功
到此這篇關于Vue報錯Module build failed: Error: Node Sass version 7.0.1 is incompatible with 4.0.0.解決方案的文章就介紹到這了,更多相關Vue報錯Module build failed內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!