22 lines
832 B
JavaScript
22 lines
832 B
JavaScript
// 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: "AIzaSyAA4HR5Qkw2qmPJ1WeTY4wRhWpOM9DaQxU",
|
|
authDomain: "frisbyee-4e34e.firebaseapp.com",
|
|
projectId: "frisbyee-4e34e",
|
|
storageBucket: "frisbyee-4e34e.firebasestorage.app",
|
|
messagingSenderId: "168856800474",
|
|
appId: "1:168856800474:web:926752760310ba0127a9e3",
|
|
measurementId: "G-1TZKCZEYRT"
|
|
};
|
|
|
|
// Initialize Firebase
|
|
const app = initializeApp(firebaseConfig);
|
|
const analytics = getAnalytics(app);
|