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

17 lines
246 B
JavaScript

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