vite-env.d.ts 272 B

123456789101112
  1. /// <reference types="vite/client" />
  2. interface ImportMetaEnv {
  3. readonly VITE_APP_ENV: 'dev' | 'production'
  4. readonly VITE_APP_URL: string
  5. readonly VITE_APP_TITLE: string
  6. readonly VITE_APP_HOMEPAGE: string
  7. }
  8. interface ImportMeta {
  9. readonly env: ImportMetaEnv
  10. }