Files
flask_spider/static/vue.config.js
T
2022-02-16 15:09:03 +08:00

22 lines
472 B
JavaScript

// vue.config.js
module.exports = {
chainWebpack: config => {
config
.plugin('html')
.tap(args => {
args[0].title= '爬虫数据可视化系统'
return args
})
},
devServer: {
proxy: {
'/': {
target: 'http://101.35.53.113:5000',
changeOrigin: true,
// pathRewrite: {
// '^/server-eggs': ''
// }
}
}
}
}