isitfake / FrontEnd /src /supabase.js
reihannudin's picture
Feat : Update UI Responsive
8534b50
Raw
History Blame Contribute Delete
243 Bytes
import { createClient } from '@supabase/supabase-js';
const supabaseUrl = import.meta.env.VITE_SUPABASE_URL;
const supabaseAnonKey = import.meta.env.VITE_SUPABASE_ANON_KEY;
export const supabase = createClient(supabaseUrl, supabaseAnonKey);