From 5fbf04b3620d84c7d16ef18cce7ab00d3923b7db Mon Sep 17 00:00:00 2001 From: Collection50 Date: Tue, 11 Jun 2024 01:32:56 +0900 Subject: [PATCH 1/2] =?UTF-8?q?chore:=20next.config=20=EC=84=A4=EC=A0=95?= =?UTF-8?q?=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- next.config.mjs | 3 --- 1 file changed, 3 deletions(-) diff --git a/next.config.mjs b/next.config.mjs index 95aff54..c633abf 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -16,19 +16,16 @@ const nextConfig = { protocol: 'https', hostname: process.env.NEXT_PUBLIC_IMAGE_URL, port: '', - pathname: '/**', }, { protocol: 'https', hostname: process.env.NEXT_PUBLIC_STICKER_URL, port: '', - pathname: '/**', }, { protocol: 'http', hostname: 'www.glueyourday.kro.kr', port: '', - pathname: '/**', }, ], }, From 682f4407f9a85b98f097d768d6efd0e211766050 Mon Sep 17 00:00:00 2001 From: Collection50 Date: Tue, 11 Jun 2024 13:04:04 +0900 Subject: [PATCH 2/2] =?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 | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/next.config.mjs b/next.config.mjs index c633abf..1a672c2 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -6,26 +6,10 @@ const nextConfig = { return config; }, images: { - domains: [ - process.env.NEXT_PUBLIC_STICKER_URL, - process.env.NEXT_PUBLIC_IMAGE_URL, - 'www.glueyourday.kro.kr', - ], remotePatterns: [ { protocol: 'https', - hostname: process.env.NEXT_PUBLIC_IMAGE_URL, - port: '', - }, - { - protocol: 'https', - hostname: process.env.NEXT_PUBLIC_STICKER_URL, - port: '', - }, - { - protocol: 'http', - hostname: 'www.glueyourday.kro.kr', - port: '', + hostname: '*', }, ], },