Last active
November 22, 2018 12:06
-
-
Save NickIliev/68a0a209541d18dc585916f7977bdb5e to your computer and use it in GitHub Desktop.
Firebase storage initialization
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
const APPSPOT_BUCKET_URL = "gs://firebase-storage-demo.appspot.com"; | |
firebase.init({ | |
storageBucket: APPSPOT_BUCKET_URL | |
// any other options | |
}).then(() => { | |
console.log("Firebase init!"); | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment