jingrowtools/vite-env.d.ts
2026-01-02 18:33:52 +08:00

11 lines
194 B
TypeScript

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