statping/frontend/vue.config.js

27 lines
509 B
JavaScript
Raw Normal View History

2020-01-14 05:11:00 +00:00
module.exports = {
baseUrl: '/',
2020-01-14 05:11:00 +00:00
assetsDir: 'assets',
2020-01-26 21:01:43 +00:00
filenameHashing: false,
2020-01-14 05:11:00 +00:00
devServer: {
2020-06-26 00:15:59 +00:00
disableHostCheck: true,
proxyTable: {
2020-01-14 05:11:00 +00:00
'/api': {
logLevel: 'debug',
2020-06-26 00:15:59 +00:00
target: 'http://0.0.0.0:8585',
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
2020-04-07 11:53:32 +00:00
},
'/oauth': {
logLevel: 'debug',
2020-06-26 00:15:59 +00:00
target: 'http://0.0.0.0:8585',
changeOrigin: true,
pathRewrite: {
'^/oauth': ''
}
2020-01-14 05:11:00 +00:00
}
}
}
};