client.ts 645 B

1234567891011
  1. // This file is automatically generated. Do not edit it directly.
  2. import { createClient } from '@supabase/supabase-js';
  3. import type { Database } from './types';
  4. const SUPABASE_URL = "https://data.duhaz.fr";
  5. const SUPABASE_PUBLISHABLE_KEY = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6IndmdHl1a3VnZWR0b2ppemdhdHdqIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NDkzNjIxNTEsImV4cCI6MjA2NDkzODE1MX0.KflrS6WiGksws1nO8NDm5i_Dav4u2JDSuEYtEnmKCRE";
  6. // Import the supabase client like this:
  7. // import { supabase } from "@/integrations/supabase/client";
  8. export const supabase = createClient<Database>(SUPABASE_URL, SUPABASE_PUBLISHABLE_KEY);