Create firestore database in your prefered region

Screen Shot 2022-06-21 at 8.53.39 PM.png

Start in production and add the code snippet below to prevent unwanted access

rules_version = '2';
service cloud.firestore {
  match /databases/{database}/documents {
    match /{document=**} {
     allow read, write: if request.auth != null;
    }
  }
}