2025-06-27 19:54:42 +08:00
|
|
|
/// <reference types="vite/client" />
|
|
|
|
|
|
|
|
/** 声明环境变量的类型 */
|
|
|
|
interface ImportMetaEnv {
|
|
|
|
readonly VITE_API_PREFIX: string
|
|
|
|
readonly VITE_API_BASE_URL: string
|
2025-08-08 16:37:36 +08:00
|
|
|
readonly VITE_API_WS_URL: string
|
2025-06-27 19:54:42 +08:00
|
|
|
readonly VITE_BASE: string
|
|
|
|
readonly VITE_APP_SETTING: string
|
|
|
|
readonly VITE_CLIENT_ID: string
|
|
|
|
}
|
|
|
|
|
|
|
|
interface ImportMeta {
|
|
|
|
readonly env: ImportMetaEnv
|
|
|
|
}
|