Hi问题是为Vue设置SASS。jsi-run:Node。js-15.7。0 Vue。js-@vue/cli4.5。11运行此命令时,我在控制台中遇到一个错误:npm install-D sass loader node sass
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! Found: webpack@3.12.0
npm ERR! node_modules/webpack
npm ERR! peer webpack@"2 || 3 || 4" from babel-loader@7.1.5
npm ERR! node_modules/babel-loader
npm ERR! dev babel-loader@"^7.1.1" from the root project
npm ERR! peer webpack@"^3.1.0" from extract-text-webpack-plugin@3.0.2
npm ERR! node_modules/extract-text-webpack-plugin
npm ERR! dev extract-text-webpack-plugin@"^3.0.0" from the root project
npm ERR! 8 more (file-loader, friendly-errors-webpack-plugin, ...)
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! dev sass-loader@"*" from the root project
npm ERR!
npm ERR! Conflicting peer dependency: webpack@5.18.0
npm ERR! node_modules/webpack
npm ERR! peer webpack@"^4.36.0 || ^5.0.0" from sass-loader@10.1.1
npm ERR! node_modules/sass-loader
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR! See C:\Users\marko\AppData\Local\npm-cache\eresolve-report.txt for a full report.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\marko\AppData\Local\npm-cache\_logs\2021-01-28T16_11_07_342Z-debug.log
我今天也有同样的问题。尝试安装sass-loader v10.0.5,而不是:
npm install -D sass-loader@10.0.5 node-sass
实际上,在Vue CLI文档中有一个关于这个问题的注释:
使用Vue CLI 4中的默认版本webpack版本4时,需要确保加载程序与之兼容。否则,您将在合并对等依赖项时出错。在这种情况下,您可以使用与webpack 4兼容的旧版本加载程序。
npm安装-D sass-loader@^10 sass
我也得到了这个错误时安装sass加载器。通过这里的参考来修复它:https://github.com/laravel-mix/laravel-mix/issues/2562