From 3b2f04b68b0a0cb513d9ef5ed9623e49fe23535a Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Wed, 6 Aug 2025 02:18:29 +0000 Subject: [PATCH] Add isSupabaseConfigured export cgen-7fe01e523dab4f73bfbc0da6d18abe05 --- client/lib/supabase.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/lib/supabase.ts b/client/lib/supabase.ts index f18ecd7d..4629b604 100644 --- a/client/lib/supabase.ts +++ b/client/lib/supabase.ts @@ -11,6 +11,9 @@ if (!supabaseUrl || !supabaseAnonKey) { ); } +// Always true in production mode - Supabase is required +export const isSupabaseConfigured = true; + export const supabase = createClient(supabaseUrl, supabaseAnonKey, { auth: { autoRefreshToken: true,