is there a way to specify the Region/Zone where my firebase functions will be deployed.
Actually i didn\'t found anything about that in the documentation and my fun
From docs: https://firebase.google.com/docs/functions/locations
Now available in the following regions:
// before
const functions = require('firebase-functions');
exports.webhook = functions
.https.onRequest((req, res) => {
res.send("Hello");
});
// after
const functions = require('firebase-functions');
exports.webhookEurope = functions
.region('europe-west1')
.https.onRequest((req, res) => {
res.send("Hello");
});