Configure Google Firebase Storage

This commit is contained in:
Ray 2024-01-02 04:37:22 +00:00 committed by GitHub
parent 9b4870cc80
commit 3224b9c91e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 0 deletions

View File

@ -16,5 +16,8 @@
"destination": "/index.html" "destination": "/index.html"
} }
] ]
},
"storage": {
"rules": "storage.rules"
} }
} }

12
storage.rules Normal file
View File

@ -0,0 +1,12 @@
rules_version = '2';
// Craft rules based on data in your Firestore database
// allow write: if firestore.get(
// /databases/(default)/documents/users/$(request.auth.uid)).data.isAdmin;
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if false;
}
}
}