From 8bef7da3222b32536b6abef3796ff2e02bb92ebd Mon Sep 17 00:00:00 2001 From: Tobotis Date: Mon, 9 Sep 2024 16:24:19 +0200 Subject: [PATCH] test --- next.config.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/next.config.js b/next.config.js index 54ebb52..cc0b358 100644 --- a/next.config.js +++ b/next.config.js @@ -4,6 +4,9 @@ const withNextra = require('nextra')({ latex: true }) -module.exports = withNextra() -// If you have other Next.js configurations, you can pass them as the parameter: -// module.exports = withNextra({ /* other next.js config */ }) \ No newline at end of file + module.exports = { + ...withNextra(), + images: { + unoptimized: true, + }, + };