From 3b7ae01c13d7a5c44d6a02ee5724354584fb302f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20P=C4=99dzich?= Date: Mon, 18 Sep 2023 11:49:52 +0200 Subject: [PATCH] Experiment with synchronous image decoding --- src/components/CatCard.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/CatCard.astro b/src/components/CatCard.astro index 7544225..77eb823 100644 --- a/src/components/CatCard.astro +++ b/src/components/CatCard.astro @@ -16,7 +16,7 @@ const { cat } = Astro.props; src={cat.data.image.src} alt={cat.data.image.alt} loading="lazy" - decoding="async" + decoding="sync" width="350" height="250" />