Files
jinbooks/jinbooks-ui/src/env.d.ts

11 lines
223 B
TypeScript
Raw Normal View History

2025-06-03 09:46:52 +08:00
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_APP_BASE_API: string; // 你的环境变量
// 其他环境变量声明...
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}