From b4853c9087d14aa83817f546459235f7969df63b Mon Sep 17 00:00:00 2001 From: Lee Calcote Date: Mon, 24 Nov 2025 15:52:10 -0600 Subject: [PATCH] Add image formats to gatsby-plugin-sharp options Signed-off-by: Lee Calcote --- gatsby-config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/gatsby-config.js b/gatsby-config.js index 687afe9554035..c2c286250f62d 100644 --- a/gatsby-config.js +++ b/gatsby-config.js @@ -591,6 +591,7 @@ module.exports = { resolve: "gatsby-plugin-sharp", options: { defaults: { + formats: ["auto", "webp", "avif"], placeholder: "blurred", }, },