From dd47dd96b805034ede2d80c9cfa7935f924b2abe Mon Sep 17 00:00:00 2001 From: Nusab Taha Date: Sat, 16 Dec 2023 17:05:33 +0600 Subject: [PATCH] Add unoptimized images support --- next.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/next.config.js b/next.config.js index 6c5442f..65da1e7 100644 --- a/next.config.js +++ b/next.config.js @@ -5,4 +5,7 @@ const withNextra = require("nextra")({ module.exports = withNextra({ output: "export", + images: { + unoptimized: true, + }, });