From 17c404dfb437620872268e7bc86bc8334ea1f1ea Mon Sep 17 00:00:00 2001 From: dyzulk <66510723+dyzulk@users.noreply.github.com> Date: Thu, 8 Jan 2026 15:08:26 +0700 Subject: [PATCH] chore: configure next.js for static export --- next.config.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index ef28363..f84b98c 100644 --- a/next.config.js +++ b/next.config.js @@ -3,4 +3,9 @@ const withNextra = require('nextra')({ themeConfig: './theme.config.tsx', }) -module.exports = withNextra() +module.exports = withNextra({ + output: 'export', + images: { + unoptimized: true, + }, +})