-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirebase.js
25 lines (20 loc) · 827 Bytes
/
firebase.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Import the functions you need from the SDKs you need
import { initializeApp } from "firebase/app";
import { getFirestore } from "firebase/firestore";
// TODO: Add SDKs for Firebase products that you want to use
// https://firebase.google.com/docs/web/setup#available-libraries
// Your web app's Firebase configuration
// For Firebase JS SDK v7.20.0 and later, measurementId is optional
const firebaseConfig = {
apiKey: "AIzaSyApjboobf8UDoL72yJCUPvTcab1LdV5g7M",
authDomain: "flash-c9871.firebaseapp.com",
projectId: "flash-c9871",
storageBucket: "flash-c9871.appspot.com",
messagingSenderId: "244092849722",
appId: "1:244092849722:web:ac959fe4fc9aa1d4566f03",
measurementId: "G-X2SRWR9VK8",
};
// Initialize Firebase
const app = initializeApp(firebaseConfig);
const db = getFirestore(app);
export { db };