From ba73c1b24ff48acc2589b3e7ad1a104a9c813a9d Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Wed, 18 Feb 2026 15:22:35 -0600 Subject: [PATCH] fix: add remote patterns for images --- astro.config.mjs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/astro.config.mjs b/astro.config.mjs index 5a66a26..a6f8850 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -20,6 +20,10 @@ export default defineConfig({ site: getSiteURL(), image: { + remotePatterns: [ + { protocol: 'https', hostname: '*.alexlebens.net' }, + { protocol: 'https', hostname: '*.jsdelivr.net' }, + ], service: { entrypoint: 'astro/assets/services/sharp', }