diff options
author | 2024-04-30 03:18:00 +0100 | |
---|---|---|
committer | 2024-04-30 03:18:00 +0100 | |
commit | c1fd7266a07f29d329286915471f2b1f205876d1 (patch) | |
tree | f75a3f4e9e395fc9809ead67a3e5e915776585a8 | |
parent | JSON feed images as PNG (diff) |
Index page images as WEBP
-rw-r--r-- | src/pages/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/index.tsx b/src/pages/index.tsx index ae4b6dc..e2523ed 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -121,7 +121,7 @@ export const query = graphql` nodes { name childImageSharp { - resize(height: 80, quality: 100) { + resize(height: 80, quality: 100, toFormat: WEBP) { src } } |