| 1234567891011 |
- // 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://data.duhaz.fr";
- const SUPABASE_PUBLISHABLE_KEY = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6IndmdHl1a3VnZWR0b2ppemdhdHdqIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NDkzNjIxNTEsImV4cCI6MjA2NDkzODE1MX0.KflrS6WiGksws1nO8NDm5i_Dav4u2JDSuEYtEnmKCRE";
- // Import the supabase client like this:
- // import { supabase } from "@/integrations/supabase/client";
- export const supabase = createClient<Database>(SUPABASE_URL, SUPABASE_PUBLISHABLE_KEY);
|