vue打包文件本地打不开

这种问题通常在console中会看到index.html关联不到其他文件了。

解决:config.js中,改静态文件的引用路径‘/’改'./'

 build: {
   
    assetsPublicPath: './',
发布了76 篇原创文章 · 获赞 9 · 访问量 6万+

猜你喜欢

转载自blog.csdn.net/github_38928905/article/details/89948904