Skip to content

Commit

Permalink
fix: decrease max raw bundle size limit
Browse files Browse the repository at this point in the history
  • Loading branch information
troykessler committed Dec 19, 2023
1 parent 0ec2aa9 commit ab30e82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/protocol/src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const REFRESH_TIME = 10 * 1000;
export const ERROR_IDLE_TIME = 10 * 1000;

// the max bundle size allowed to upload - currently 200MB
export const MAX_BUNDLE_BYTE_SIZE = 200 * 1024 * 1024;
export const MAX_BUNDLE_BYTE_SIZE = 100 * 1024 * 1024;

// the max compression size - currently 2GB
export const MAX_COMPRESSION_BYTE_SIZE = 2 * 10 ** 9;
Expand Down

0 comments on commit ab30e82

Please sign in to comment.