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