env.d.ts 124 B

1234567
  1. interface ImportMetaEnv {
  2. readonly VITE_API_BASE_URL?: string;
  3. }
  4. interface ImportMeta {
  5. readonly env: ImportMetaEnv;
  6. }