| 12345678910111213141516171819202122 |
- // 环境配置
- export type EnvType = 'develop' | 'trial' | 'release';
- // 根据实际项目环境设置
- export const envWx: EnvType = 'develop'; // 可以根据实际需要修改为 'trial' 或 'release'
- // 项目配置
- interface ProjectConfig {
- baseUrl: string;
- clientId: string;
- tenantId: string;
- appid: string;
- }
- const config: ProjectConfig = {
- baseUrl: import.meta.env.VITE_API_BASE_URL || 'http://localhost:3000',
- clientId: '20251229',
- tenantId: '000000',
- appid: '1942409637969063940'
- };
- export default config;
|