UNPKG

recallbricks-sdk

Version:

TypeScript SDK for writing memory chunks to RecallBricks persistent memory infrastructure.

15 lines (12 loc) 556 B
import { initializeApp, getApps } from "firebase/app"; import { getFirestore } from "firebase/firestore"; const firebaseConfig = { apiKey: "AIzaSyBWUaQ7VhiaVCj5i-WX5nOBMxxvDp0aP-0", authDomain: "leadotter.firebaseapp.com", projectId: "leadotter", // ✅ this fixes the undefined issue storageBucket: "leadotter.appspot.com", messagingSenderId: "787387646130", appId: "1:787387646130:web:9e65d0a75c6ef0a78189ab" }; const app = getApps().length ? getApps()[0] : initializeApp(firebaseConfig); export const db = getFirestore(app);