과 같은 에러가 발생한 경우
cloude Firestore의 규칙을 allow read,write: if true;로 변경해주면 됩니다.
allow read,write: if true;
rules_version = '2'; service cloud.firestore { match /databases/{database}/documents { match /{document=**} { allow read, write: if true } } }