On a newly created project, I cannot publish any changes to the Firebase rules. Even simple changes like adding a newline to the end of the file or adding a space.
I feel like this may be a bug in Firestore but thought I'd ask here first...
Error saving rules –An unknown error occurred
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read, write: if false;
}
}
}