소셜로그인 (구글 로그인)

!!
supabase 소셜로그인 (구글 로그인)
https://velog.io/@jntantmsemt/supabase-%EC%86%8C%EC%85%9C%EB%A1%9C%EA%B7%B8%EC%9D%B8-%EA%B5%AC%EA%B8%80-%EB%A1%9C%EA%B7%B8%EC%9D%B8

구글 로그인
https://github.com/automatethem-js-database-supabase-etc/supabase-google-react-good/tree/main

onlyThirdPartyProviders
https://supabase.com/docs/guides/auth/auth-helpers/auth-ui

        <Auth
          supabaseClient={supabase}
          appearance={{ theme: ThemeSupa }}
          providers={[
            'google', 
            //'facebook', 
            //'twitter'
          ]}
          onlyThirdPartyProviders
        />

Last updated