12 lines
301 B
TypeScript
Executable File
12 lines
301 B
TypeScript
Executable File
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_SUPABASE_URL: string;
|
|
readonly VITE_SUPABASE_ANON_KEY: string;
|
|
readonly VITE_VISION_API_URL?: string; // optional; defaults to "/api" via vite proxy
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|