osc/oscm/board/vue.config.js
2025-06-07 18:38:22 +08:00

16 lines
390 B
JavaScript

module.exports = {
publicPath: '/oscm',
devServer: {
host: '0.0.0.0',
port: 8080,
proxy: 'http://127.0.0.1:8081'
// proxy: 'http://38.54.94.107:28081'
},
chainWebpack: config => {
config.plugin('html')
.tap(args => {
args[0].title = "采集管理平台";
return args;
})
}
}