/** 不同请求服务的环境配置 */ 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/, ''), }, }, }; 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]; }