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 | |
---|
1 | import { getApp, getApps, initializeApp } from 'firebase/app';
|
---|
2 | import { getAuth } from 'firebase/auth';
|
---|
3 | import { getFirestore } from 'firebase/firestore';
|
---|
4 | import { getStorage } from 'firebase/storage';
|
---|
5 | // config
|
---|
6 | import { FIREBASE_CONFIG } from 'src/config-global';
|
---|
7 |
|
---|
8 | const app = getApps().length > 0 ? getApp() : initializeApp(FIREBASE_CONFIG);
|
---|
9 |
|
---|
10 | export const auth = getAuth(app);
|
---|
11 | export const db = getFirestore(app);
|
---|
12 | export const storage = getStorage(app);
|
---|
Note:
See
TracBrowser
for help on using the repository browser.