16 lines
402 B
JavaScript
16 lines
402 B
JavaScript
module.exports = {
|
|
publicPath: '/secworld',
|
|
devServer: {
|
|
host: '0.0.0.0',
|
|
port: 8080,
|
|
// proxy: 'http://127.0.0.1:8081'
|
|
proxy: 'http://47.115.228.133:28081'
|
|
},
|
|
chainWebpack: config => {
|
|
config.plugin('html')
|
|
.tap(args => {
|
|
args[0].title = "安全运营管理平台";
|
|
return args;
|
|
})
|
|
}
|
|
} |