Add environment variable debugging
cgen-66cce74d49f54619af3377dbe56a34fc
This commit is contained in:
parent
e22e74f647
commit
63ee6e6dd1
1 changed files with 3 additions and 1 deletions
|
|
@ -8,7 +8,9 @@ const supabaseAnonKey = import.meta.env.VITE_SUPABASE_ANON_KEY;
|
|||
console.log("Supabase Config:", {
|
||||
hasUrl: !!supabaseUrl,
|
||||
hasKey: !!supabaseAnonKey,
|
||||
url: supabaseUrl?.substring(0, 30) + "..."
|
||||
url: supabaseUrl,
|
||||
keyPrefix: supabaseAnonKey?.substring(0, 20) + "...",
|
||||
isSupabaseConfigured
|
||||
});
|
||||
|
||||
// Check if we have valid environment variables
|
||||
|
|
|
|||
Loading…
Reference in a new issue