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,