chore: configure next.js for static export

This commit is contained in:
dyzulk
2026-01-08 15:08:26 +07:00
parent 6c5b0c53ae
commit 17c404dfb4

View File

@@ -3,4 +3,9 @@ const withNextra = require('nextra')({
themeConfig: './theme.config.tsx',
})
module.exports = withNextra()
module.exports = withNextra({
output: 'export',
images: {
unoptimized: true,
},
})