© 2026 Hedgehog Software, LLC
async function signInWithGoogle () { const supaAuthResponse = await supabase.auth.signInWithOAuth( { provider: 'google', options: { queryParams: { access_type: 'offline', prompt: 'consent', }, }, }); console.log(await supaAuthResponse); };
console.log
supaAuthResponse
supabase.auth.signInWithOAuth()