Vue运行时报错:ERROR Failed to compile with 1 errors ,浏览器报错:Cannot GET /

时间:2024-03-19 08:53:44

问题:Vue运行时报错:ERROR  Failed to compile with 1 errors ,浏览器报错:Cannot GET /

分享我遇到的问题的解决方法供大家参考!

今天在运行vue项目时,命令行出现报错如下:

Vue运行时报错:ERROR Failed to compile with 1 errors ,浏览器报错:Cannot GET /

 

浏览器访问返回如下报错,没找到根路由

Vue运行时报错:ERROR Failed to compile with 1 errors ,浏览器报错:Cannot GET /

 

于是查看配置文件,发现project\build\webpack.dev.conf.js中入口文件名称配置与项目实际名称发生了变化,配置文件中为main.html,而项目根目录下为index.html

Vue运行时报错:ERROR Failed to compile with 1 errors ,浏览器报错:Cannot GET /

因此,将配置文件中main.html改为index.html就好了,改完项目成功启动。