Skip to content

Commit

Permalink
increase limit
Browse files Browse the repository at this point in the history
  • Loading branch information
Jumaron committed Dec 22, 2024
1 parent eb60ea0 commit e374b30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Cache/Drivers/MinifyJS.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function processScripts(): void {
// Skip if file issues
if (!file_exists($source) ||
!is_readable($source) ||
filesize($source) > 50000) { // 50KB limit
filesize($source) > 500000) { // 500KB limit
continue;
}

Expand Down

0 comments on commit e374b30

Please sign in to comment.