// Minimal Vite-style env typing for the instrumentation-client entry. // When the full TanStack Start / Vite build is wired in a later plan, // replace this with `/// `. interface ImportMetaEnv { readonly VITE_WEB_TANSTACK_SENTRY_DSN?: string; readonly VITE_GIT_COMMIT_SHA?: string; } interface ImportMeta { readonly env: ImportMetaEnv; }