fix: Add Supabase storage to Next.js images config

Allow next/image to optimize images from supaapi.cloud.fluffigewolke.de storage bucket.
This commit is contained in:
2026-01-19 11:42:59 +01:00
parent 6320cb14e5
commit 3c02d33531

View File

@@ -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