From 3961a1d507de72bab1738f1ced0bdd3fa2251e85 Mon Sep 17 00:00:00 2001 From: manNomi Date: Sat, 14 Mar 2026 19:10:02 +0900 Subject: [PATCH 1/2] fix(web): wrap home news image with upload cdn --- apps/web/src/app/(home)/_ui/NewsSection/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/web/src/app/(home)/_ui/NewsSection/index.tsx b/apps/web/src/app/(home)/_ui/NewsSection/index.tsx index 1a5c86e9..61af24a8 100644 --- a/apps/web/src/app/(home)/_ui/NewsSection/index.tsx +++ b/apps/web/src/app/(home)/_ui/NewsSection/index.tsx @@ -46,6 +46,7 @@ const NewsSection = ({ newsList }: NewsSectionProps) => { loading="lazy" className="h-24 w-44 shrink-0 rounded-xl object-cover" src={news.imageUrl} + cdnHostType="upload" alt={news.title} width={170} height={90} From a46b362bbd7fd79eec42e81bc6efa80d5e93ca69 Mon Sep 17 00:00:00 2001 From: manNomi Date: Sat, 14 Mar 2026 19:14:31 +0900 Subject: [PATCH 2/2] fix(web): use default cdn host for home news image --- apps/web/src/app/(home)/_ui/NewsSection/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/app/(home)/_ui/NewsSection/index.tsx b/apps/web/src/app/(home)/_ui/NewsSection/index.tsx index 61af24a8..e0c4e3b8 100644 --- a/apps/web/src/app/(home)/_ui/NewsSection/index.tsx +++ b/apps/web/src/app/(home)/_ui/NewsSection/index.tsx @@ -46,7 +46,7 @@ const NewsSection = ({ newsList }: NewsSectionProps) => { loading="lazy" className="h-24 w-44 shrink-0 rounded-xl object-cover" src={news.imageUrl} - cdnHostType="upload" + cdnHostType="default" alt={news.title} width={170} height={90}