build(vite.config.ts): 📦 代理接口地址通过env配置文件修改

This commit is contained in:
cshaptx4869 2024-03-01 13:54:38 +08:00
parent 9b5d10ca0b
commit 073d95d26f
2 changed files with 7 additions and 4 deletions

View File

@ -6,3 +6,8 @@ VITE_APP_PORT = 3000
# 代理前缀
VITE_APP_BASE_API = '/dev-api'
# 线上接口地址
VITE_APP_API_URL = http://vapi.youlai.tech
# 开发接口地址
# VITE_APP_API_URL = http://localhost:8989

View File

@ -51,10 +51,8 @@ export default defineConfig(({ mode }: ConfigEnv): UserConfig => {
*/
[env.VITE_APP_BASE_API]: {
changeOrigin: true,
// 线上接口地址
target: "http://vapi.youlai.tech",
// 开发接口地址
// target: "http://localhost:8989",
// 接口地址
target: env.VITE_APP_API_URL,
rewrite: (path) =>
path.replace(new RegExp("^" + env.VITE_APP_BASE_API), ""),
},