Vue-cli3 多入口项目,运行页面空白

单页面时没问题,改为多页面后运行页面空白,控制台提示:
The resource http://localhost:6255/runtime~index.js was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate as value and it is preloaded intentionally.
Vue-cli3 多入口项目,运行页面空白_第1张图片

参考了一些网上的文章,发现有出现相同的情况。然后与其他文章对比发现图一框框中的文件名大多是不一样的,借鉴他们的修改方法,在chunks 里添加我控制台提示的文件
Vue-cli3 多入口项目,运行页面空白_第2张图片

总结:各位如果遇到类似情况可以尝试在chunk:[]中添加控制台提示的那个文件,原理不太懂,如果有知道的大佬可以在评论区评论,谢谢
参考:(https://github.com/vuejs/vue-...,(https://segmentfault.com/q/10...

你可能感兴趣的:(vue-cli3,vue.js,前端)