From 84f9fc544232a42a1e6ff5901ea380dd07e277a2 Mon Sep 17 00:00:00 2001 From: Crokily Date: Tue, 30 Sep 2025 09:57:12 +1000 Subject: [PATCH] feat(config): add AWS S3 domain to allowed image domains --- next.config.mjs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/next.config.mjs b/next.config.mjs index 6458353..cda2eff 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -33,6 +33,11 @@ const config = { hostname: "cdn.nlark.com", pathname: "/**", }, + { + protocol: "https", + hostname: "*.amazonaws.com", + pathname: "/**", + }, ], }, };