feature/ssr-deployment
| 1 | import app from 'firebase/app'; |
| 2 | import 'firebase/database'; |
| 3 | |
| 4 | // Initialize Firebase |
| 5 | const config = { |
| 6 | apiKey: "AIzaSyBDMgSgpCGpPQVs2ziPm5igl2nL8I6jdeQ", |
| 7 | authDomain: "blazing-fire-5965.firebaseapp.com", |
| 8 | databaseURL: "https://blazing-fire-5965.firebaseio.com", |
| 9 | projectId: "blazing-fire-5965", |
| 10 | storageBucket: "blazing-fire-5965.appspot.com", |
| 11 | messagingSenderId: "1043865982157" |
| 12 | }; |
| 13 | |
| 14 | export default !app.apps.length ? app.initializeApp(config) : app; |