From 160de46136f943e4a032cb68439404a53171a66a Mon Sep 17 00:00:00 2001 From: Andrei Balanuta <43002968+snurfer0@users.noreply.github.com> Date: Sat, 9 Dec 2023 15:23:56 +0200 Subject: [PATCH] fix: allow images across the internet --- next.config.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/next.config.js b/next.config.js index 45a6693..22ce675 100644 --- a/next.config.js +++ b/next.config.js @@ -4,8 +4,10 @@ const nextConfig = { images: { remotePatterns: [ { - protocol: "https", - hostname: "**", + protocol: 'https', + hostname: '**', + port: '', + pathname: '**', }, ], },