diff --git a/next.config.mjs b/next.config.mjs index 95aff54..1a672c2 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -6,29 +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: '', - pathname: '/**', - }, - { - protocol: 'https', - hostname: process.env.NEXT_PUBLIC_STICKER_URL, - port: '', - pathname: '/**', - }, - { - protocol: 'http', - hostname: 'www.glueyourday.kro.kr', - port: '', - pathname: '/**', + hostname: '*', }, ], },