Shinhati2023 commited on
Commit
3b500ae
·
verified ·
1 Parent(s): a8d33f7

Create src/vite-env.d.ts

Browse files
Files changed (1) hide show
  1. src/vite-env.d.ts +11 -0
src/vite-env.d.ts ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /// <reference types="vite/client" />
2
+
3
+ interface ImportMetaEnv {
4
+ readonly VITE_SUPABASE_URL: string
5
+ readonly VITE_SUPABASE_ANON_KEY: string
6
+ readonly VITE_GEMINI_API_KEY: string
7
+ }
8
+
9
+ interface ImportMeta {
10
+ readonly env: ImportMetaEnv
11
+ }