From 75994c09bd0ebc98e568e9f81c4515f7baf7c19c Mon Sep 17 00:00:00 2001 From: pradeepkumar Date: Mon, 30 Mar 2026 08:26:51 +0530 Subject: [PATCH] chore: disable image optimization for external domains to resolve SSL issues with Contabo S3 --- next.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/next.config.ts b/next.config.ts index 1ef3db0..d02b403 100644 --- a/next.config.ts +++ b/next.config.ts @@ -20,6 +20,9 @@ const nextConfig: NextConfig = { hostname: "127.0.0.1", }, ], + // Don't proxy external images through Next.js server + // Avoids SSL cert issues with Contabo S3 (sin1.contabostorage.com) + unoptimized: true, }, };