-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfirebaseConfig.js
More file actions
27 lines (21 loc) · 880 Bytes
/
firebaseConfig.js
File metadata and controls
27 lines (21 loc) · 880 Bytes
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
26
27
// Import the functions you need from the SDKs you need
import { initializeApp } from "firebase/app";
import { getAnalytics } from "firebase/analytics";
import { getAuth } from "firebase/auth";
// 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
console.log(process.env)
const firebaseConfig = {
apiKey: "AIzaSyAklpOXuu1MRtyHts8brun3eij5F1qHf9Y",
authDomain: "notes-app-25f7a.firebaseapp.com",
projectId: "notes-app-25f7a",
storageBucket: "notes-app-25f7a.appspot.com",
messagingSenderId: "180386574356",
appId: "1:180386574356:web:fb6d1b7582f185b4e2f701",
measurementId: "G-PPBWVT98HC",
};
// Initialize Firebase
const app = initializeApp(firebaseConfig);
export default app