We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ef6029 commit 998009cCopy full SHA for 998009c
src/supabase/index.ts
@@ -2,7 +2,7 @@ import { createClient } from '@supabase/supabase-js';
2
import { Database } from './supabse.types.ts';
3
4
const supabaseUrl = 'https://gfdlxyizcyatrunsajun.supabase.co';
5
-const supabaseKey = process.env.SUPABASE_KEY as string;
+const supabaseKey = import.meta.env.VITE_SUPABASE_KEY as string;
6
const supabase = createClient<Database>(supabaseUrl, supabaseKey);
7
8
export default supabase;
0 commit comments