In my project console, I get this message.
There are currently no FancyProject applications in the project.
Then I get instructions for including Firebase in the script tag in my application.
However, I already included it in the React application as the following, and I checked it to register. I can also update the Firebase database as well as in my application without problems. Why is this not being added as an application in my project console?
import Firebase from 'firebase'
export const config = {
apiKey: "<APIKEY>,
authDomain: "<AUTHDOMAINLINK>,
databaseURL: "<DATABASEURL>",
storageBucket: "<STORAGEBUCKET>",
messagingSenderId: "<SENDERID>"
}
let app = Firebase.initializeApp(config)
console.log(app.name) // this registers!
export const ref = Firebase.database().ref()
export const firebaseAuth = Firebase.auth
source
share