system-copyright-react/src/vite-env.d.ts

9 lines
218 B
TypeScript
Raw Normal View History

2024-03-11 19:13:42 +08:00
/// <reference types="vite/client" />
2025-05-07 14:25:17 +08:00
interface ImportMetaEnv {
readonly VITE_CURRENT_THEME: string;
// 可以添加其他环境变量的类型定义
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}