source: src/lib/firebase.ts@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 456 bytes
Line 
1import { getApp, getApps, initializeApp } from 'firebase/app';
2import { getAuth } from 'firebase/auth';
3import { getFirestore } from 'firebase/firestore';
4import { getStorage } from 'firebase/storage';
5// config
6import { FIREBASE_CONFIG } from 'src/config-global';
7
8const app = getApps().length > 0 ? getApp() : initializeApp(FIREBASE_CONFIG);
9
10export const auth = getAuth(app);
11export const db = getFirestore(app);
12export const storage = getStorage(app);
Note: See TracBrowser for help on using the repository browser.