vue项目遇到的报错问题收集
Posted AC_meimei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue项目遇到的报错问题收集相关的知识,希望对你有一定的参考价值。
vue项目遇到的报错问题收集
1、npm 版本报错
问题:
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: vue-element-admin@4.2.1
npm ERR! Found: less@4.1.2
npm ERR! node_modules/less
npm ERR! dev less@"^4.1.2" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer less@"^2.3.1 || ^3.0.0" from less-loader@5.0.0
npm ERR! node_modules/less-loader
npm ERR! dev less-loader@"^5.0.0" from the root project
npm ERR!
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 D:\\Env\\nodejs\\node_cache\\eresolve-report.txt for a full report.
npm ERR! A complete log of this run can be found in:
npm ERR! D:\\Env\\nodejs\\node_cache\\_logs\\2022-03-29T06_34_21_993Z-debug-0.log
解决:
使用 npm install --legacy-peer-deps
2、npm install报错10054,Error while executing
问题:
解决:打开Git命令页面执行下面命令,执行git命令脚本:修改设置,解除ssl验证
git config --global http.sslVerify "false"
3、问题:npm ERR! cb() never called! npm ERR! This is an error with npm itself. Pleas 这类的报错问题
解决步骤:
(1)删除项目里的 packeage-lock.json 和 node_modules 文件:
(2)清理npm缓存:
npm cache clean --force
(3)再安装 node_modules :
npm install
(4)最后项目启动:
npm run dev 或者 npm run build
以上是关于vue项目遇到的报错问题收集的主要内容,如果未能解决你的问题,请参考以下文章