import { getApp, getApps, initializeApp } from 'firebase/app'; import { getAuth } from 'firebase/auth'; import { getFirestore } from 'firebase/firestore'; import { getStorage } from 'firebase/storage'; // config import { FIREBASE_CONFIG } from 'src/config-global'; const app = getApps().length > 0 ? getApp() : initializeApp(FIREBASE_CONFIG); export const auth = getAuth(app); export const db = getFirestore(app); export const storage = getStorage(app);