statping/frontend/vue.config.js

30 lines
670 B
JavaScript
Raw Permalink 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-08-20 02:50:52 +00:00
productionTip: process.env.NODE_ENV !== 'production',
devtools: process.env.NODE_ENV !== 'production',
performance: process.env.NODE_ENV !== 'production',
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
}
}
}
};