From 76a4ad431d7772cf5c92f53173a1903869bcbf1e Mon Sep 17 00:00:00 2001 From: Andrei Balanuta <43002968+snurfer0@users.noreply.github.com> Date: Sat, 9 Dec 2023 15:23:44 +0200 Subject: [PATCH 1/2] fix: alt --- src/components/molecules/card.banner.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/molecules/card.banner.tsx b/src/components/molecules/card.banner.tsx index da0a495..fad0020 100644 --- a/src/components/molecules/card.banner.tsx +++ b/src/components/molecules/card.banner.tsx @@ -24,7 +24,7 @@ const CardBanner: React.FC = ({ imageUrl }) => {
Shoes Date: Sat, 9 Dec 2023 15:23:56 +0200 Subject: [PATCH 2/2] 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: '**', }, ], },