🔥 Firebase Hosting

This commit is contained in:
Liyas Thomas
2019-10-03 15:16:39 +05:30
parent fe1034ce1a
commit c54b019d55
13 changed files with 2032 additions and 11 deletions

7
storage.rules Normal file
View File

@@ -0,0 +1,7 @@
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if request.auth!=null;
}
}
}