mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
39 lines
887 B
TypeScript
39 lines
887 B
TypeScript
/** 不同请求服务的环境配置 */
|
|
const serviceEnv = {
|
|
dev: {
|
|
'/api': {
|
|
target: 'http://localhost:8080',
|
|
changeOrigin: true,
|
|
rewrite: (path) => path.replace(/^\/api/, ''),
|
|
},
|
|
},
|
|
test: {
|
|
'/api': {
|
|
target: 'http://localhost:8080',
|
|
changeOrigin: true,
|
|
rewrite: (path) => path.replace(/^\/api/, ''),
|
|
},
|
|
},
|
|
prod: {
|
|
'/api': {
|
|
target: 'http://localhost:8080',
|
|
changeOrigin: true,
|
|
rewrite: (path) => path.replace(/^\/api/, ''),
|
|
},
|
|
},
|
|
};
|
|
|
|
/**
|
|
* @description: 生成vite代理字段
|
|
* @param {*} env - 环境变量配置
|
|
*/
|
|
export function createViteProxy(env) {
|
|
//判断是否需要开启代理
|
|
const isOpenProxy = env.VITE_HTTP_PROXY === 'Y';
|
|
if (!isOpenProxy) return undefined;
|
|
|
|
// 返回对应代理
|
|
const { VITE_SERVICE_ENV = 'dev' } = env;
|
|
return serviceEnv[VITE_SERVICE_ENV];
|
|
}
|