module.exports = { runtimeCompiler: true, chainWebpack: config => { config .plugin('html') .tap(args => { args[0].title = '红山开源平台' return args }) }, devServer: { port:8020, proxy: { '/api': { target: 'http://localhost:8010', changeOrigin: true, pathRewrite: { '^/api': '' } } }, // 此处开启 https https: false, } }