diff --git a/built/image-processor.js b/built/image-processor.js index be63182..5cd517c 100644 --- a/built/image-processor.js +++ b/built/image-processor.js @@ -1,11 +1,12 @@ import sharp from 'sharp'; export const webpDefault = { - quality: 85, + quality: 77, alphaQuality: 95, lossless: false, nearLossless: false, smartSubsample: true, mixed: true, + effort: 2, }; export function convertToWebpStream(path, width, height, options = webpDefault) { return convertSharpToWebpStream(sharp(path), width, height, options);