DemuMesDataV/vue.config.js

15 lines
337 B
JavaScript
Raw Normal View History

2018-12-05 13:41:28 +08:00
module.exports = {
devServer: {
2018-12-12 18:48:43 +08:00
port: 6661,
proxy: {
'/rest': {
// target: 'http://yd.jdyw.prod.hndfsj.net',
target: 'http://192.168.10.122:38088', //mashuai
// target: 'http://192.168.10.125:38080', //qianshuo
pathRewrite: {
'^/rest': '/rest'
}
}
}
2018-12-05 13:41:28 +08:00
}
}