11 lines
664 B
TypeScript
11 lines
664 B
TypeScript
// This file is automatically generated. Do not edit it directly.
|
|
import { createClient } from '@supabase/supabase-js';
|
|
import type { Database } from './types';
|
|
|
|
const SUPABASE_URL = "https://qnerebtvwwfobfzdoftx.supabase.co";
|
|
const SUPABASE_PUBLISHABLE_KEY = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InFuZXJlYnR2d3dmb2JmemRvZnR4Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3NDIwNTE0MzgsImV4cCI6MjA1NzYyNzQzOH0.Wm7h2DUhoQbeANuEM3wm2tz22ITrVEW8FizyLgIVmv8";
|
|
|
|
// Import the supabase client like this:
|
|
// import { supabase } from "@/integrations/supabase/client";
|
|
|
|
export const supabase = createClient<Database>(SUPABASE_URL, SUPABASE_PUBLISHABLE_KEY); |