11 lines
225 B
TypeScript
11 lines
225 B
TypeScript
|
|
/// <reference types="vite/client" />
|
||
|
|
|
||
|
|
interface ImportMetaEnv {
|
||
|
|
readonly VITE_SUPABASE_URL: string
|
||
|
|
readonly VITE_SUPABASE_ANON_PUBLIC_KEY: string
|
||
|
|
}
|
||
|
|
|
||
|
|
interface ImportMeta {
|
||
|
|
readonly env: ImportMetaEnv
|
||
|
|
}
|