Template
1
0
mirror of https://github.com/un-pany/v3-admin-vite.git synced 2025-04-22 03:49:19 +08:00
v3-admin-vite/types/env.d.ts

12 lines
314 B
TypeScript
Raw Normal View History

/** 声明 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
readonly VITE_ROUTER_HISTORY: "hash" | "html5"
readonly VITE_PUBLIC_PATH: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}