Could not resolve dependency: npm ERR! peer html-webpack-plugin@"^3.0.0 || ^4.0.0" from script-ext-html-webpack-plugin@2.1.5 npm ERR! node_modules/script-ext-html-webpack-plugin npm ERR! dev script-ext-html-webpack-plugin@"2.1.5" from the root project
时间: 2023-09-22 21:08:31 浏览: 473
详解html-webpack-plugin插件(用法总结)
这个错误信息看起来是在使用 npm 安装某个依赖时出现的。错误提示显示缺少 html-webpack-plugin 的 peer dependency,即 html-webpack-plugin 的版本需要符合 "^3.0.0 || ^4.0.0",而您当前的 script-ext-html-webpack-plugin 版本是 2.1.5,它需要符合这个版本要求。
为了解决这个问题,您可以尝试升级 html-webpack-plugin,或者降低 script-ext-html-webpack-plugin 的版本,使其符合当前已安装的 html-webpack-plugin 的版本要求。
您可以尝试运行以下命令:
```
npm install html-webpack-plugin@^3.0.0 --save-dev
```
这将安装符合要求的 html-webpack-plugin。如果这个命令没有解决问题,您可以尝试降低 script-ext-html-webpack-plugin 的版本,或者查看其他可能的解决方案。
阅读全文