Filip Kujawa | 3a0fbf3 | 2023-03-31 14:25:26 -0700 | [diff] [blame] | 1 | import { getFirestore } from 'firebase/firestore'; |
| 2 | import { initializeApp } from 'firebase/app'; |
| 3 | import { getAuth } from 'firebase/auth'; |
| 4 | |
| 5 | const firebaseConfig = { |
| 6 | apiKey: '', |
| 7 | authDomain: 'spartan-predictions.firebaseapp.com', |
| 8 | projectId: 'spartan-predictions', |
| 9 | storageBucket: 'spartan-predictions.appspot.com', |
| 10 | messagingSenderId: '541826816726', |
| 11 | appId: '1:541826816726:web:4eb4bc915fd882c7b6c777', |
| 12 | measurementId: 'G-1Q4X7F0XTJ' |
| 13 | }; |
| 14 | |
| 15 | export const app = initializeApp(firebaseConfig); |
| 16 | export const auth = getAuth(app); |
| 17 | export const db = getFirestore(app); |