npm ERR! code E404 npm ERR! 404 Not Found - GET https://registry.npmjs.org/@vue%2fvue-loader-v15 - Not found npm ERR! 404 npm ERR! 404 '@vue/vue-loader-v15@15.10.1' is not in the npm registry. npm ERR! 404 You should bug the author to publish it (or use the name yourself!) npm ERR! 404 It was specified as a dependency of '@vue/cli-service' npm ERR! 404 npm ERR! 404 Note that you can also install from a npm ERR! 404 tarball, folder, http url, or git url.
时间: 2023-10-12 07:02:05 浏览: 324
eslint-config-preset:osdoc react vue typescript eslint 预设和更漂亮的预设
这个错误提示是因为你安装的 Vue CLI 版本不支持 `@vue/vue-loader-v15` 这个包,可能是因为你的 Vue CLI 版本过低或者过高导致的。可以尝试以下方法解决:
1. 升级 Vue CLI 版本到最新版本:
```
npm install -g @vue/cli
```
2. 在 `package.json` 文件中将 `@vue/cli-service` 的版本号改为 `^3.0.0`,然后删除 `node_modules` 文件夹和 `package-lock.json` 文件,重新安装依赖:
```
rm -rf node_modules
rm -f package-lock.json
npm install
```
如果以上方法都没有解决问题,可以尝试在安装时使用 `--legacy-peer-deps` 参数,例如:
```
npm install --legacy-peer-deps
```
这个参数可以让 npm 安装时忽略依赖项版本的检查,但并不是最优解决方案,建议先尝试前两种方法。
阅读全文