mirror of
https://github.com/xsf0105/vue3-h5-template.git
synced 2025-04-05 04:22:47 +08:00
12 lines
314 B
TypeScript
12 lines
314 B
TypeScript
/** 声明 vite 环境变量的类型(如果未声明则默认是 any) */
|
||
interface ImportMetaEnv {
|
||
readonly VITE_APP_TITLE: string
|
||
readonly VITE_BASE_API: string
|
||
readonly VITE_ROUTER_HISTORY: "hash" | "html5"
|
||
readonly VITE_PUBLIC_PATH: string
|
||
}
|
||
|
||
interface ImportMeta {
|
||
readonly env: ImportMetaEnv
|
||
}
|