JavaScript: Auth Passkey

This section contains methods for WebAuthn passkey registration, authentication, and management. Methods are invoked behind the supabase.auth.passkey namespace.

Passkey support is an experimental feature. Enable it when creating the client:

const supabase = createClient(supabaseUrl, publishableKey, {
  auth: {
    experimental: { passkey: true },
  },
})