-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8230cbf
commit 448262f
Showing
1 changed file
with
17 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
import { initializeApp } from "firebase/app"; | ||
import { getAuth } from "firebase/auth"; | ||
import { getFirestore } from "firebase/firestore"; | ||
// import { initializeApp } from "firebase/app"; | ||
// import { getAuth } from "firebase/auth"; | ||
// import { getFirestore } from "firebase/firestore"; | ||
|
||
//replace the Firebase config | ||
// //replace the Firebase config | ||
|
||
const firebaseConfig = { | ||
apiKey: "XXXXXXXXXXXXXXXX", | ||
authDomain: "XXXXXXXXXXXXXX", | ||
projectId: "XXXXXXXXXXXXX", | ||
storageBucket: "XXXXXXXXXXXXXX", | ||
messagingSenderId: "XXXXXXXXXXXXXXXXX", | ||
appId: "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" | ||
}; | ||
// const firebaseConfig = { | ||
// apiKey: "XXXXXXXXXXXXXXXX", | ||
// authDomain: "XXXXXXXXXXXXXX", | ||
// projectId: "XXXXXXXXXXXXX", | ||
// storageBucket: "XXXXXXXXXXXXXX", | ||
// messagingSenderId: "XXXXXXXXXXXXXXXXX", | ||
// appId: "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" | ||
// }; | ||
|
||
// Initialize Firebase | ||
const app = initializeApp(firebaseConfig); | ||
const auth = getAuth(app); | ||
const firestore = getFirestore(app); | ||
// // Initialize Firebase | ||
// const app = initializeApp(firebaseConfig); | ||
// const auth = getAuth(app); | ||
// const firestore = getFirestore(app); | ||
|
||
export { app, auth, firestore }; | ||
// export { app, auth, firestore }; |