From 42facacd2437c11cdafaa5193a1bc9fb8ca19fe6 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Fri, 28 Oct 2022 20:19:11 -0700 Subject: [PATCH] Set next setting to not try to optimize images --- web/next.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/next.config.js b/web/next.config.js index 95dcea810..d156e1550 100644 --- a/web/next.config.js +++ b/web/next.config.js @@ -7,6 +7,9 @@ module.exports = withBundleAnalyzer( withLess({ trailingSlash: true, reactStrictMode: true, + images: { + unoptimized: true, + }, webpack(config) { config.module.rules.push({ test: /\.svg$/i,