From fd446d14bed9ae253e55c9393f5dd5e36d68729a Mon Sep 17 00:00:00 2001 From: Leyo <183100539+LeyoNeuroAI@users.noreply.github.com> Date: Sat, 1 Nov 2025 01:15:51 +0100 Subject: [PATCH] Fixing next/image` Un-configured Host error while uploading images (#1254) Co-authored-by: Hayden Bleasel --- next.config.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/next.config.ts b/next.config.ts index 272b206..41d588e 100644 --- a/next.config.ts +++ b/next.config.ts @@ -9,6 +9,11 @@ const nextConfig: NextConfig = { { hostname: "avatar.vercel.sh", }, + { + protocol: "https", + //https://nextjs.org/docs/messages/next-image-unconfigured-host + hostname: "*.public.blob.vercel-storage.com", + }, ], }, };