env.d.ts 266 B

12345678910111213
  1. /// <reference types="vite/client" />
  2. declare const __APP_VERSION__: string
  3. interface ImportMetaEnv {
  4. readonly VITE_APP_TITLE: string
  5. readonly VITE_APP_LANG: string
  6. readonly VITE_APP_BASE_API: string
  7. }
  8. interface ImportMeta {
  9. readonly env: ImportMetaEnv
  10. }