vite-env.d.ts 163 B

123456789
  1. /// <reference types="vite/client" />
  2. interface ImportMetaEnv {
  3. readonly VITE_API_BASE_URL?: string;
  4. }
  5. interface ImportMeta {
  6. readonly env: ImportMetaEnv;
  7. }