Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. uiConfig = {
  2. // Popup signin flow rather than redirect flow.
  3. signInFlow: 'popup',
  4. // We will display Google and Facebook as auth providers.
  5. signInOptions: [
  6. firebase.auth.GoogleAuthProvider.PROVIDER_ID,
  7. firebase.auth.FacebookAuthProvider.PROVIDER_ID
  8. ],
  9. callbacks: {
  10. // Avoid redirects after sign-in.
  11. signInSuccessWithAuthResult: () => false
  12. }
  13. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement