-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirebaseConfig.tsx
More file actions
22 lines (18 loc) · 801 Bytes
/
Copy pathfirebaseConfig.tsx
File metadata and controls
22 lines (18 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Import the functions you need from the SDKs you need
import { initializeApp } from "firebase/app";
import { getAnalytics } from "firebase/analytics";
// 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: "Your Firebase API Key",
authDomain: "Your Firebase Auth Domain",
projectId: "Your Firebase Project ID",
storageBucket: "Your Firebase Storage Bucket",
messagingSenderId: "Your Firebase Messaging Sender ID",
appId: "Your Firebase App ID",
measurementId: "Your Firebase Measurement ID"
};
// Initialize Firebase
export const app = initializeApp(firebaseConfig);