We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb5a26c commit a88a556Copy full SHA for a88a556
client/storage.rules
@@ -60,9 +60,9 @@ service firebase.storage {
60
|| requestData.name.matches('users/.*/.*_thumbnail'));
61
}
62
63
- // Only allow uploads of any file that's less than 4MB
+ // Only allow uploads of any file that's less than 8MB
64
function validFileSize (requestData) {
65
- return requestData.size < 4 * 1024 * 1024;
+ return requestData.size < 8 * 1024 * 1024;
66
67
68
// FILES matching rules --------------------------------------------------------
0 commit comments