2025-10-24 23:10:22 +08:00

12 lines
236 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_JINGROW_SERVER_URL: string
readonly VITE_BACKEND_SERVER_URL: string
// 更多环境变量...
}
interface ImportMeta {
readonly env: ImportMetaEnv
}