vue2.0项目打包空白,找到config文件夹打开index.js文件 在module.exports 下 build下可以看到 assetsPublicPath: ‘/’
路径里加个.就行了 比如 assetsPublicPath: ‘./’
build: {
// Template for index.html
index: path.resolve(__dirname, '../dist/index.html'),
// Paths
assetsRoot: path.resolve(__dirname, '../dist'),
assetsSubDirectory: 'static',
assetsPublicPath: './',
}