From d86823e32d367b99d01fd94c5f9c385b9cbe775b Mon Sep 17 00:00:00 2001 From: tamaina Date: Fri, 17 Mar 2023 13:44:13 +0000 Subject: [PATCH] 0.0.18 --- built/image-processor.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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);