From fc0894d7c1eaa20b1473e5357c8f062fa1468520 Mon Sep 17 00:00:00 2001 From: jtw Date: Sun, 22 Feb 2026 01:53:43 +0900 Subject: [PATCH 1/3] =?UTF-8?q?fix:=20=EA=B0=9C=EA=B0=99=EC=9D=80=20?= =?UTF-8?q?=EC=97=90=EB=9F=AC=EC=88=98=EC=A0=95=EC=8B=9C=EB=8F=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- next.config.ts | 2 +- src/app/kkuko/profile/components/ItemModal.tsx | 2 +- src/app/kkuko/profile/components/ProfileHeader.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/next.config.ts b/next.config.ts index effc6b8..11aebe0 100644 --- a/next.config.ts +++ b/next.config.ts @@ -21,7 +21,7 @@ const nextConfig: NextConfig = { protocol: 'https', hostname: 'api.solidloop-studio.xyz', port: '', - pathname: '/kkuko/**', + pathname: '/**', } ], localPatterns: [ diff --git a/src/app/kkuko/profile/components/ItemModal.tsx b/src/app/kkuko/profile/components/ItemModal.tsx index 5370f80..f355151 100644 --- a/src/app/kkuko/profile/components/ItemModal.tsx +++ b/src/app/kkuko/profile/components/ItemModal.tsx @@ -83,7 +83,7 @@ export default function ItemModal({ itemsData, profileData, onClose }: ItemModal
} - url={`https://api.solidloop-studio.xyz/kkuko/image?url=https://cdn.kkutu.co.kr/img/kkutu/moremi/badge/${item.id}.png`} + url={`https://api.solidloop-studio.xyz/kkuko/img?url=https://cdn.kkutu.co.kr/img/kkutu/moremi/badge/${item.id}.png`} alt={item.name} width={40} height={40} From b4ec430a04c37e1e10f1507b9ae23d11a175ba80 Mon Sep 17 00:00:00 2001 From: jtw Date: Sun, 22 Feb 2026 02:38:48 +0900 Subject: [PATCH 2/3] =?UTF-8?q?fix:=20=ED=85=8C=EC=8A=A4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/kkuko/profile/components/ItemModal.tsx | 2 +- src/app/kkuko/profile/components/ProfileHeader.tsx | 4 ++-- src/app/kkuko/shared/components/ProfileAvatar.tsx | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/kkuko/profile/components/ItemModal.tsx b/src/app/kkuko/profile/components/ItemModal.tsx index f355151..2c722c7 100644 --- a/src/app/kkuko/profile/components/ItemModal.tsx +++ b/src/app/kkuko/profile/components/ItemModal.tsx @@ -83,7 +83,7 @@ export default function ItemModal({ itemsData, profileData, onClose }: ItemModal
} - url={`https://api.solidloop-studio.xyz/kkuko/img?url=https://cdn.kkutu.co.kr/img/kkutu/moremi/badge/${item.id}.png`} + url={`https://cdn.kkutu.co.kr/img/kkutu/moremi/badge/${item.id}.png`} alt={item.name} width={40} height={40} @@ -99,7 +99,7 @@ export default function ProfileHeader({
Date: Mon, 2 Mar 2026 15:21:40 +0900 Subject: [PATCH 3/3] =?UTF-8?q?fix:=20=EC=9D=B4=EB=AF=B8=EC=A7=80=20?= =?UTF-8?q?=EC=BA=90=EC=8B=B1=EC=8B=9C=EA=B0=84=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- next.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index 11aebe0..d8a4281 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,6 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ transpilePackages: ['lucide-react'], images: { remotePatterns: [ @@ -32,6 +31,7 @@ const nextConfig: NextConfig = { pathname: '/img/**', }, ], + minimumCacheTTL: 2592000, }, };