SCR-20230131-i4a.png

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


rules_version = '2';
service firebase.storage {
  match /b/{bucket}/o {
    match /{allPaths=**} {
      allow read, write: if request.auth != null;
    }
  }
}