vue打包后 静态文件路径问题处理

1、js,css的路径不对
方法:找到 config/index.js,将其中的assetsPublicPath值改为’./’

assetsPublicPath:'./'

2、css中引用的图片资源找不到
方法:找到 build/utils.js,增加一行代码即可:

publicPath:"../../"

相关文章:
https://www.cnblogs.com/diantao/p/7776523.html
https://www.cnblogs.com/hanchongyang/p/8663899.html
https://segmentfault.com/q/1010000012668475

后记:
以上配置只是基本配置,具体问题可根据你的项目而变动

你可能感兴趣的:(Vue)