first commit

This commit is contained in:
tuanvu
2026-01-05 09:57:44 +01:00
parent 8abb9062b3
commit 66d8e6f485
27 changed files with 16490 additions and 73 deletions

21
firebase_config.js Normal file
View File

@@ -0,0 +1,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: "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);