-
-
Notifications
You must be signed in to change notification settings - Fork 549
Open
Description
SDK migration guide: https://firebase.google.com/docs/web/modular-upgrade
The way that modules are accessible have been changed in v9. For example, firebase.auth() does not exist anymore and you need to use getAuth(firebase) to access the auth object. Due to this change, the init action fails to complete successfully.
Currently auth can be worked around by manually binding auth() to the firebase instance as following:
(firebase as unknown as any).auth = () => getAuth(firebase);and disabling the following option:
config = {
enableRedirectHandling: false
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels