vue 用命令npm run build 打包后打开index.html空白

在网上找了一些答案,要修改三处地方

build文件下的utils.js文件增加publicPath:'../../'

vue 用命令npm run build 打包后打开index.html空白_第1张图片

webpack.prod.conf.js文件增加publicPath:'./',

vue 用命令npm run build 打包后打开index.html空白_第2张图片

还有就是config文件下的index.js,修改assetsPublicPath: '/',为assetsPublicPath: './', 在/前面加多一“点”

vue 用命令npm run build 打包后打开index.html空白_第3张图片

你可能感兴趣的:(前端,vue)