env.d.ts 314 B

1234567891011
  1. /** 声明 vite 环境变量的类型(如果未声明则默认是 any) */
  2. interface ImportMetaEnv {
  3. readonly VITE_APP_TITLE: string
  4. readonly VITE_BASE_API: string
  5. readonly VITE_ROUTER_HISTORY: "hash" | "html5"
  6. readonly VITE_PUBLIC_PATH: string
  7. }
  8. interface ImportMeta {
  9. readonly env: ImportMetaEnv
  10. }