15 lines
273 B
JavaScript
15 lines
273 B
JavaScript
|
module.exports = {
|
||
|
devServer: {
|
||
|
|
||
|
proxy: {
|
||
|
'/api': {
|
||
|
target: 'https://appointtest.szjixun.cn',
|
||
|
changeOrigin: true,
|
||
|
pathRewrite: {
|
||
|
'^/api': ''
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
}
|
||
|
}
|