2022-04-21 11:24:17 +08:00
|
|
|
|
/** 声明 vite 环境变量的类型(如果未声明则默认是 any) */
|
2024-02-22 18:52:25 +08:00
|
|
|
|
interface ImportMetaEnv {
|
2023-08-29 18:13:35 +08:00
|
|
|
|
readonly VITE_APP_TITLE: string
|
2024-11-21 19:52:07 +08:00
|
|
|
|
readonly VITE_BASE_URL: string
|
2022-08-19 22:05:26 +08:00
|
|
|
|
readonly VITE_ROUTER_HISTORY: "hash" | "html5"
|
|
|
|
|
readonly VITE_PUBLIC_PATH: string
|
2022-04-21 11:24:17 +08:00
|
|
|
|
}
|
2023-04-11 12:33:03 +08:00
|
|
|
|
|
|
|
|
|
interface ImportMeta {
|
|
|
|
|
readonly env: ImportMetaEnv
|
|
|
|
|
}
|