From 0b49ce54f6ae4436930ceb75b2c8836672b4763e Mon Sep 17 00:00:00 2001 From: Collection50 Date: Tue, 11 Jun 2024 01:10:22 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20next.config=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- next.config.mjs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/next.config.mjs b/next.config.mjs index fdb61d5..95aff54 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -14,18 +14,21 @@ const nextConfig = { remotePatterns: [ { protocol: 'https', - hostname: process.env.NEXT_PUBLIC_STICKER_URL, + hostname: process.env.NEXT_PUBLIC_IMAGE_URL, port: '', + pathname: '/**', }, { protocol: 'https', - hostname: process.env.NEXT_PUBLIC_IMAGE_URL, + hostname: process.env.NEXT_PUBLIC_STICKER_URL, port: '', + pathname: '/**', }, { protocol: 'http', hostname: 'www.glueyourday.kro.kr', port: '', + pathname: '/**', }, ], },