Files
Wdipl-react/vite-env.d.ts
2025-07-18 12:24:17 +05:30

11 lines
196 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_API_URL: string;
// add other env vars here if needed
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}