From b20a8f98c91ebdcf0a0f1c66bcb21ee13fc79833 Mon Sep 17 00:00:00 2001 From: Farnabaz Date: Wed, 11 Nov 2020 19:06:39 +0330 Subject: [PATCH] fix: reduce placeholders quality --- src/runtime/image.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/image.ts b/src/runtime/image.ts index b5cefcdd7..ccde8f74c 100644 --- a/src/runtime/image.ts +++ b/src/runtime/image.ts @@ -176,7 +176,7 @@ export function createImage (context, { providers, defaultProvider, presets, int } image.getMeta = async (source: string, modifiers: ImageModifiers, options: any = {}) => { - const { image } = parseImage(source, { ...modifiers, width: 30 }, options) + const { image } = parseImage(source, { ...modifiers, width: 30, quality: 40 }, options) const meta = { placeholder: image.url }