uni-halo/vue.config.js
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"
}
}
}
}
}