vite-env.d.ts 290 B

12345678910111213
  1. /// <reference types="vite/client" />
  2. interface ImportMetaEnv {
  3. readonly VITE_API_URL: string
  4. readonly VITE_AUTH_API_URL: string
  5. readonly VITE_STORAGE_URL: string
  6. readonly VITE_NODE_ENV: string
  7. readonly VITE_DEBUG: string
  8. }
  9. interface ImportMeta {
  10. readonly env: ImportMetaEnv
  11. }