Portfolio/vite-env.d.ts
2026-06-17 16:21:54 -04:00

13 lines
213 B
TypeScript

interface ViteTypeOptions {
strictImportMetaEnv: unknown;
}
interface ImportMetaEnv {
readonly VITE_API_URL: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}
declare const API_URL: string;