Last active
September 23, 2020 04:27
-
-
Save Yorzic/c702add0988c465c540bacb75d5b0f90 to your computer and use it in GitHub Desktop.
Custom Firebase functions region
This file contains hidden or 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
exports.myStorageFunction = functions | |
.region('australia-southeast1') | |
.storage | |
.object() | |
.onFinalize((object) => { | |
// ... | |
}); | |
// Reference: https://stackoverflow.com/questions/43569595/firebase-deploy-to-custom-region-eu-central1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment