vue报错:This is probably not a problem with npm. There is likely additional logging output above.

报错截图

vue报错:This is probably not a problem with npm. There is likely additional logging output above._第1张图片

网上查看了别的博客以及一些资料,大概意思就是webpack-dev-server这个版本号太高了,我报错的时候版本是3.3.1的...

解决方法

卸载现在版本,安装低版本2.9.1

npm uninstall webpack-dev-server  (卸载)

npm install [email protected]  (安装)

安装的时候...又报错了

然后我安装提示  输入 “npm audit fix” 之后有回到了第一次报错的时候!!!! 反复折腾了好几次之后 发现,之后运行了 “npm audit fix”命令之后 webpack-dev-server的版本号又神奇的回到了3.3.1版本~~~~然后有重复了卸载和安装的这一步,

不管他的提示~ 不运行命令“npm audit fix”,之间npm run dev !!!! 然后发现可以启动项目了!

你可能感兴趣的:(vue报错:This is probably not a problem with npm. There is likely additional logging output above.)