From 3171676237f93176d257b49ff529e4e4b42d031b Mon Sep 17 00:00:00 2001 From: KelvinTegelaar Date: Mon, 9 Sep 2024 21:37:42 +0200 Subject: [PATCH] disable image optimization server sided --- next.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/next.config.js b/next.config.js index 2dec742dc12a..32f5eb3bea26 100644 --- a/next.config.js +++ b/next.config.js @@ -1,6 +1,9 @@ /** @type {import('next').NextConfig} */ const config = { reactStrictMode: false, + images: { + unoptimized: true, + }, webpack(config) { config.module.rules.push({ test: /\.svg$/,