// 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: "AIzaSyDwFt8D6uK9wbbTLpFfr9nSCVn6Wxcl068",
authDomain: "empowerment-7e425.firebaseapp.com",
projectId: "empowerment-7e425",
storageBucket: "empowerment-7e425.appspot.com",
messagingSenderId: "1051960228609",
appId: "1:1051960228609:web:1ad5600bd27010d4503900",
measurementId: "G-M6ZE1XQCQ0"
};
// Initialize Firebase
const app = initializeApp(firebaseConfig);
const analytics = getAnalytics(app);
Post a Comment