uni-item-manage/vue.config.js

15 lines
273 B
JavaScript
Raw Normal View History

2023-10-17 03:56:54 +00:00
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'https://appointtest.szjixun.cn',
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}
},
}
}