Skip to content

Instantly share code, notes, and snippets.

@SergioJuniorCE
Last active January 4, 2022 06:13
Show Gist options
  • Save SergioJuniorCE/7180fc7a86f78b16447db8e757295f51 to your computer and use it in GitHub Desktop.
Save SergioJuniorCE/7180fc7a86f78b16447db8e757295f51 to your computer and use it in GitHub Desktop.
supabase client
import { createClient } from '@supabase/supabase-js';
const supabase = createClient(
import.meta.env.VITE_SUPABASE_URL.toString(),
import.meta.env.VITE_SUPABASE_KEY.toString()
);
export default supabase;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment