vite-env.d.ts 243 B

1234567891011
  1. /// <reference types="vite/client" />
  2. interface ImportMetaEnv {
  3. readonly VITE_ENABLE_MOCK: 'true' | 'false'
  4. readonly VITE_API_PREFIX: string
  5. readonly VITE_PROXY_ENDPOINT: string
  6. }
  7. interface ImportMeta {
  8. readonly env: ImportMetaEnv
  9. }