From 3c02d33531bb2b59be56a2e086729dc9705cbe4d Mon Sep 17 00:00:00 2001 From: robin Date: Mon, 19 Jan 2026 11:42:59 +0100 Subject: [PATCH] fix: Add Supabase storage to Next.js images config Allow next/image to optimize images from supaapi.cloud.fluffigewolke.de storage bucket. --- next.config.mjs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/next.config.mjs b/next.config.mjs index a345725..4f1c57e 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -10,6 +10,15 @@ const nextConfig = { bodySizeLimit: '10mb', }, }, + images: { + remotePatterns: [ + { + protocol: 'https', + hostname: 'supaapi.cloud.fluffigewolke.de', + pathname: '/storage/v1/object/public/**', + }, + ], + }, }; // Wrap with Sentry only if DSN is configured