refactor(porject): 迁移代理配置至config

This commit is contained in:
chen.home 2023-01-14 16:59:18 +08:00
parent 65db1d063e
commit bb54075e91
5 changed files with 35 additions and 35 deletions

View File

@ -11,5 +11,4 @@ lib
/docs
.vscode
.local
!.env-config.ts
components.d.ts

View File

@ -1,2 +1,3 @@
export * from './sdk';
export * from './service';
export * from './env';

View File

@ -1,4 +1,4 @@
import { getServiceEnvConfig } from '~/.env-config';
import { getServiceEnvConfig } from '@/config';
import { createRequest } from './request';
const { url, urlPattern } = getServiceEnvConfig(import.meta.env);

View File

@ -1,7 +1,7 @@
import { defineConfig, loadEnv, ConfigEnv } from 'vite';
import { createViteProxy, setVitePlugins } from './build';
import { resolve } from 'path';
import { getServiceEnvConfig } from './.env-config';
import { getServiceEnvConfig } from './src/config';
// 当前执行node命令时文件夹的地址工作目录
const rootPath: string = resolve(process.cwd());