解决vue打包后空白报错(没有自动创建vue.config.js)

根目录下创建vue.config.js,内容

module.exports = {
    assetsDir: 'static',
    parallel: false,
    publicPath: './',
productionSourceMap: false,//不生成map文件 }
原文地址:https://www.cnblogs.com/azure-zero/p/13615526.html