Files
jinbooks/jinbooks-ui/src/env.d.ts
jinbooks_dev 1e2b0fd9d4 v1.0.1
2025-06-03 09:46:52 +08:00

11 lines
223 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_APP_BASE_API: string; // 你的环境变量
// 其他环境变量声明...
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}