Skip to content

Commit

Permalink
Update firebaseConfig.js
Browse files Browse the repository at this point in the history
  • Loading branch information
lakshithaonline authored Jul 13, 2024
1 parent 8230cbf commit 448262f
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions src/services/firebaseConfig.js
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 };

0 comments on commit 448262f

Please sign in to comment.