diff --git a/types/env.d.ts b/types/env.d.ts index 49861b49..ce910eda 100644 --- a/types/env.d.ts +++ b/types/env.d.ts @@ -4,13 +4,12 @@ * Vite 环境变量类型定义 */ interface ImportMetaEnv { - readonly VITE_APP_PORT: number; - readonly VITE_APP_NAME: string; + readonly VITE_APP_PORT: string; readonly VITE_APP_BASE_API: string; readonly VITE_APP_API_URL: string; readonly VITE_APP_TITLE?: string; readonly VITE_APP_TENANT_ENABLED?: string; - readonly VITE_MOCK_DEV_SERVER: boolean; + readonly VITE_MOCK_DEV_SERVER: string; } interface ImportMeta {