Skip to content

Instantly share code, notes, and snippets.

@Yorzic
Last active September 23, 2020 04:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Yorzic/c702add0988c465c540bacb75d5b0f90 to your computer and use it in GitHub Desktop.
Save Yorzic/c702add0988c465c540bacb75d5b0f90 to your computer and use it in GitHub Desktop.
Custom Firebase functions region
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