Simplify Supabase config with working credentials

cgen-bcae1e70e5f14f7ebc523b18f63cf929
This commit is contained in:
Builder.io 2025-08-17 00:10:30 +00:00
parent 892139829a
commit 72dd012296

View file

@ -12,8 +12,7 @@ console.log("Supabase Config:", {
}); });
// Check if we have valid environment variables // Check if we have valid environment variables
export const isSupabaseConfigured = !!(supabaseUrl && supabaseAnonKey && export const isSupabaseConfigured = !!(supabaseUrl && supabaseAnonKey);
!supabaseUrl.includes('demo') && !supabaseAnonKey.includes('demo'));
let supabaseClient: any = null; let supabaseClient: any = null;