final version

This commit is contained in:
RedCat310
2025-05-21 18:58:04 +02:00
parent 7d3214e6be
commit b38f86ceb2
5 changed files with 486 additions and 207 deletions

16
src/firebase.js Normal file
View File

@@ -0,0 +1,16 @@
import { initializeApp } from "firebase/app";
import { getFirestore } from "firebase/firestore";
const firebaseConfig = {
apiKey: "AIzaSyAMimOrp73SW_pffgJ_MXeIjrXr7a-IIPE",
authDomain: "skatabend0.firebaseapp.com",
projectId: "skatabend0",
storageBucket: "skatabend0.firebasestorage.app",
messagingSenderId: "362332041327",
appId: "1:362332041327:web:87779c1bcb2a70f8c8dd9a"
}
const app = initializeApp(firebaseConfig)
const db = getFirestore(app)
export { db }