Created
September 25, 2018 08:11
-
-
Save kcchien/1f2d5eaf6347a5df1567f7ba7f40765d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Config file | |
import * as firebase from "firebase"; | |
const config = {...}; | |
export default !firebase.apps.length ? firebase.initializeApp(config) : firebase.app(); | |
// Other file | |
import firebase from '../firebase'; | |
... | |
console.log(firebase.name); | |
console.log(firebase.database()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment