From b42e55f8a8b04165339523be54a55650aadb35ec Mon Sep 17 00:00:00 2001 From: Nauval Date: Mon, 16 Sep 2024 07:06:16 +0700 Subject: [PATCH] chore: next export static config --- next.config.mjs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/next.config.mjs b/next.config.mjs index 956518c..a764062 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -5,4 +5,9 @@ const withNextra = nextra({ themeConfig: './theme.config.jsx', }); -export default withNextra({}); +export default withNextra({ + output: 'export', + images: { + unoptimized: true, + }, +});