diff options
author | 2024-04-30 03:17:53 +0100 | |
---|---|---|
committer | 2024-04-30 03:17:53 +0100 | |
commit | b5e78847bc658e3b2d3f91ab939b163202a24be3 (patch) | |
tree | 95e84bec0076bcccd4d8874bf6297ab0cc0a40c9 | |
parent | Add JSON feed output (diff) |
JSON feed images as PNG
-rw-r--r-- | gatsby-config.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gatsby-config.ts b/gatsby-config.ts index 6b032e6..e0de17b 100644 --- a/gatsby-config.ts +++ b/gatsby-config.ts @@ -67,7 +67,7 @@ const config: GatsbyConfig = { nodes { name childImageSharp { - resize(height: 256, quality: 100) { + resize(height: 256, quality: 100, toFormat: PNG) { src } } |