osc/oscm/board/vue.config.js

16 lines
390 B
JavaScript
Raw Normal View History

2025-05-28 19:16:17 +08:00
module.exports = {
2025-06-07 13:35:04 +08:00
publicPath: '/oscm',
2025-05-28 19:16:17 +08:00
devServer: {
host: '0.0.0.0',
port: 8080,
2025-06-10 14:11:38 +08:00
// proxy: 'http://127.0.0.1:8081'
proxy: 'http://38.54.94.107:28081'
2025-05-28 19:16:17 +08:00
},
chainWebpack: config => {
config.plugin('html')
.tap(args => {
2025-06-07 13:35:04 +08:00
args[0].title = "采集管理平台";
2025-05-28 19:16:17 +08:00
return args;
})
}
}