Social Login
This documentation provides guidance on configuring, enabling, and managing Social Login in your application.
Supported Social Providers
/** Social auth type enum */
export enum SocialAuthType {
CORE = 'core', // Will be implemented in future releases
SUPABASE = 'supabase',
FIREBASE = 'firebase'
}Configuration
Example:
export const SOCIAL_AUTH_PROVIDER: SocialAuthType | undefined = undefined;
// or
export const SOCIAL_AUTH_PROVIDER: SocialAuthType | undefined = SocialAuthType.FIREBASE;
// or
export const SOCIAL_AUTH_PROVIDER: SocialAuthType | undefined = SocialAuthType.SUPABASE;Environment Variables
Reference Links
Supabase Social Login Setup
Firebase Social Login Setup
Last updated