build(vite.config.ts): 📦 代理接口地址通过env配置文件修改
This commit is contained in:
parent
9b5d10ca0b
commit
073d95d26f
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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), ""),
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue