1
0
mirror of https://github.com/ialley-workshop-open/uni-halo.git synced 2026-06-10 20:29:28 +08:00
Files
uni-halo/vue.config.js
T
2024-07-11 11:28:27 +08:00

17 lines
241 B
JavaScript

//vue.config.js
module.exports = {
devServer: {
disableHostCheck: true,
proxy: {
"/apis": {
target: 'https://demo.halo.run',
changeOrigin: true,
secure: true,
pathRewrite: {
"^/apis": "/apis"
}
}
}
}
}