Skip to content

Commit

Permalink
Update src/OptimizerChainFactory.php
Browse files Browse the repository at this point in the history
Co-authored-by: Michal Kleiner <mk@011.nz>
  • Loading branch information
jan-tricks and michalkleiner authored Feb 27, 2023
1 parent e3d34bb commit 531f95e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OptimizerChainFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public static function create(array $config = []): OptimizerChain
if (isset($config['quality'])) {
$jpegQuality = '--max='.$config['quality'];
$pngQuality = '--quality='.$config['quality'];
$webpQuality = '-q 80'.$config['quality'];
$webpQuality = '-q '.$config['quality'];
}

return (new OptimizerChain())
Expand Down

0 comments on commit 531f95e

Please sign in to comment.