From 1b5778b2698ee8f8d39fa9bd0f6036facb99f15b Mon Sep 17 00:00:00 2001 From: Adam Joseph Arling Date: Mon, 31 Jul 2023 14:13:45 -0500 Subject: [PATCH] Disable NextJS Image optimization since we're using a static site build --- next.config.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index eee563c5a..b20716356 100644 --- a/next.config.js +++ b/next.config.js @@ -1,6 +1,11 @@ module.exports = { assetPrefix: process.env.NEXT_PUBLIC_BASE_PATH, basePath: process.env.NEXT_PUBLIC_BASE_PATH, - experimental: { esmExternals: true }, + experimental: { + esmExternals: true, + }, + images: { + unoptimized: true, + }, reactStrictMode: true, };