Function: useInitialiseFirebase
▸ useInitialiseFirebase(«destructured»
): InitialiseFirebaseResult
Function used to initialise Firebase, either by using the provided config, or by fetching it by Firebase Hosting, if not specified.
It works as a hook that gives you the loading state and the used configuration.
You most likely only need to use this if you are developing a custom app that is not using FirebaseCMSApp. You can also not use this component and initialise Firebase yourself.
Parameters
Name | Type |
---|---|
«destructured» | Object |
› authDomain? | string |
› firebaseConfig | undefined | Record <string , unknown > |
› name? | string |
› onFirebaseInit? | (config : object , firebaseApp : FirebaseApp ) => void |