From 77f0f6ce9e048e80c7658c56bd951764ceb5eb4c Mon Sep 17 00:00:00 2001 From: Daniel N <2color@users.noreply.github.com> Date: Wed, 16 Oct 2024 11:53:32 +0200 Subject: [PATCH] chore: enable unoptimised images --- js-peer/next.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js-peer/next.config.js b/js-peer/next.config.js index 33e2cd2..61152ed 100644 --- a/js-peer/next.config.js +++ b/js-peer/next.config.js @@ -3,6 +3,9 @@ const nextConfig = { output: 'export', reactStrictMode: true, productionBrowserSourceMaps: true, + images: { + unoptimized: true, + }, } module.exports = nextConfig