Files
pqs-9100_client/frontend/vite-env.d.ts

10 lines
173 B
TypeScript
Raw Normal View History

2024-08-19 14:01:14 +08:00
interface ImportMetaEnv {
readonly NODE_ENV: string;
readonly VITE_TITLE: string;
// ... 其他环境变量
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}