From c2563cd1f1452af313e29d2f63b009065edfa133 Mon Sep 17 00:00:00 2001 From: choiboa Date: Fri, 16 Jan 2026 19:47:29 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat:=20=20Cloudinary=20=EC=9B=90?= =?UTF-8?q?=EA=B2=A9=20=EC=9D=B4=EB=AF=B8=EC=A7=80=20=EB=8F=84=EB=A9=94?= =?UTF-8?q?=EC=9D=B8=20=ED=97=88=EC=9A=A9=20=EC=84=A4=EC=A0=95=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- next.config.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/next.config.ts b/next.config.ts index 87284df..ad7e5de 100644 --- a/next.config.ts +++ b/next.config.ts @@ -12,6 +12,15 @@ const nextConfig: NextConfig = { }, }, + images: { + remotePatterns: [ + { + protocol: "https", + hostname: "res.cloudinary.com", + }, + ], + }, + webpack: (config) => { // @ts-expect-error: Next const fileLoaderRule = config.module.rules.find((rule) =>