env.d.ts 301 B

123456789101112
  1. // the ts of vite config file
  2. /// <reference types="vite/client" />
  3. export interface ImportMetaEnv {
  4. readonly VITE_APP_BASE_URL: string
  5. readonly VITE_APP_IMAGE_URL: string
  6. readonly VITE_APP_ENV: string
  7. // 更多环境变量...
  8. }
  9. export interface ImportMeta {
  10. readonly env: ImportMetaEnv
  11. }