天天看点

用Webpack启动Vue项目时提示This is probably not a problem with npm,there is likely additional logging output

首先 cd 到要启动的项目里面。

再启动该项目 ​

​npm run dev​

​。

出现下图情况:

用Webpack启动Vue项目时提示This is probably not a problem with npm,there is likely additional logging output

原因我还不清楚,知道的大佬可以评论提示弱弱。

解决方法:

输入​​

​npm install​

​,重新安装 npm。

再重新启动该项目 ​

​npm run dev​

​ ( 首先 cd 到要启动的项目里面)。

出现下图情况说明启动成功:

用Webpack启动Vue项目时提示This is probably not a problem with npm,there is likely additional logging output

进入浏览器输入地址 ​

​http://localhost:8080​

​。

继续阅读