8 lines
194 B
TypeScript
8 lines
194 B
TypeScript
|
|
/// <reference types="vite/client" />
|
||
|
|
interface ImportMetaEnv {
|
||
|
|
VITE_API_BASE: string
|
||
|
|
VITE_LOCAL_AUTH_INSTANCE_ID?: string
|
||
|
|
VITE_LOCAL_AUTH_PROXY_PORT?: string
|
||
|
|
// ...其他环境变量
|
||
|
|
}
|