10 lines
173 B
TypeScript
10 lines
173 B
TypeScript
|
|
interface ImportMetaEnv {
|
||
|
|
readonly NODE_ENV: string;
|
||
|
|
readonly VITE_TITLE: string;
|
||
|
|
// ... 其他环境变量
|
||
|
|
}
|
||
|
|
|
||
|
|
interface ImportMeta {
|
||
|
|
readonly env: ImportMetaEnv;
|
||
|
|
}
|