feat: 更改请求代理地址

This commit is contained in:
zoujing
2026-04-02 16:52:31 +08:00
parent b2ca694fbd
commit 9436ff138e
5 changed files with 5 additions and 5 deletions

View File

@@ -11,7 +11,7 @@ axios.defaults.headers['Content-Type'] = 'application/json;charset=utf-8'
// 创建axios对象
const instance = axios.create({
baseURL: VITE_ENV === 'development' ? '/ingress/hotelBiz' : VITE_BASE_API,
baseURL: VITE_ENV === 'development' ? '/ingress/agent' : VITE_BASE_API,
// 超时
timeout: 10000
})