From 2b3618b4f1580c4845c6ab92fb0df85d3d52423d Mon Sep 17 00:00:00 2001 From: Greg Brimble Date: Sat, 22 Mar 2025 14:59:30 -0400 Subject: [PATCH] Don't limit input image pixels --- astro.config.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/astro.config.ts b/astro.config.ts index ba38e224c12dd7..8b43468653a27f 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -69,6 +69,14 @@ export default defineConfig({ rehypeTitleFigure, ], }, + image: { + service: { + entrypoint: "astro/assets/services/sharp", + config: { + limitInputPixels: false, + }, + }, + }, experimental: { contentIntellisense: true, },