Logo

vite-env.d.ts

/// 
interface ImportMetaEnv {
  readonly VITE_ENV: string;
  // Add other environment variables here if needed
}

interface ImportMeta {
  readonly env: ImportMetaEnv;
}