Skip to content

Commit

Permalink
✨ increase upload size limit from 15 to 25MB (#299)
Browse files Browse the repository at this point in the history
  • Loading branch information
itsjwala committed Dec 12, 2022
1 parent 87c4985 commit dd8d509
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const fs = require('fs');
const path = require('path');
const walk = require('walk');

const MAX_FILE_SIZE_BYTES = 15728640; // 15MB.
const MAX_FILE_SIZE_BYTES = 26214400; // 25MB.

module.exports = {
sha256hash(content) {
Expand Down

0 comments on commit dd8d509

Please sign in to comment.