终端执行:
npm run dev
出现:
I Your application is running here: http://localhost:8080
但并没有打开浏览器运行项目
解决办法:
找到config/index.js中
autoOpenBrowser: false,
修改为
autoOpenBrowser: true,
如图:
终端执行:
npm run dev
出现:
I Your application is running here: http://localhost:8080
但并没有打开浏览器运行项目
解决办法:
找到config/index.js中
autoOpenBrowser: false,
修改为
autoOpenBrowser: true,
如图:
转载于:https://www.cnblogs.com/frost-yen/p/9571076.html