From 7cdfe2d1944aa0895851abb14f797faa07008348 Mon Sep 17 00:00:00 2001 From: httpjamesm Date: Tue, 11 Jun 2024 01:20:30 -0400 Subject: [PATCH] fix: allow unoptimized images --- next.config.mjs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/next.config.mjs b/next.config.mjs index 608d9c5..c07fc75 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,7 +1,10 @@ /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, - output: "export" + output: "export", + images: { + unoptimized: true, + } }; export default nextConfig;