Skip to content

Commit

Permalink
upadted firebase confice
Browse files Browse the repository at this point in the history
  • Loading branch information
saagor16 committed Apr 17, 2024
1 parent 8d92c58 commit 0a69253
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/firebase/firebase.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@ import { initializeApp } from "firebase/app";
// https://firebase.google.com/docs/web/setup#available-libraries

// Your web app's Firebase configuration


const firebaseConfig = {
apiKey: "AIzaSyAhYORw-ZIu_1xBH5kNTR4HDk8Fl3mQexg",
authDomain: "b9a8-real-estate.firebaseapp.com",
projectId: "b9a8-real-estate",
storageBucket: "b9a8-real-estate.appspot.com",
messagingSenderId: "780028252888",
appId: "1:780028252888:web:4feefef3f6af20da57bdad"
apiKey: import.meta.env.VITE_APIKEY,
authDomain: import.meta.env.VITE_AUTHDOMAIN,
projectId: import.meta.env.VITE_PROJECTID,
storageBucket: import.meta.env.VITE_STORAGEBUCKET,
messagingSenderId: import.meta.env.VITE_MESSAGINGSENDERID,
appId: import.meta.env.VITE_APPID,
};

// Initialize Firebase
Expand Down

0 comments on commit 0a69253

Please sign in to comment.