runtime-configuration.d.ts663 BView on GitHub
interface ImportMetaEnv {
  readonly NODE_ENV?: 'development' | 'staging' | 'production';
  readonly VITE_PUBLIC_APP_URL?: string;
  readonly VITE_PUBLIC_BACKEND_URL?: string;
  readonly VITE_PUBLIC_POSTHOG_KEY?: string;
  readonly VITE_PUBLIC_POSTHOG_HOST?: string;
  readonly VITE_PUBLIC_SENTRY_DSN?: string;
  readonly VITE_PUBLIC_SENTRY_ENVIRONMENT?: string;
  readonly VITE_PUBLIC_SENTRY_RELEASE?: string;
  readonly VITE_PUBLIC_SENTRY_TRACES_SAMPLE_RATE?: string;
  readonly VITE_PUBLIC_SENTRY_REPLAYS_SESSION_SAMPLE_RATE?: string;
  readonly VITE_PUBLIC_SENTRY_REPLAYS_ERROR_SAMPLE_RATE?: string;
}

interface ImportMeta {
  readonly env: ImportMetaEnv;
}