Skip to content

Commit

Permalink
chore: generate static page
Browse files Browse the repository at this point in the history
  • Loading branch information
antond15 committed Apr 18, 2024
1 parent ceb4c79 commit 4832a19
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.next
node_modules
dist
8 changes: 7 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,10 @@ const withNextra = require('nextra')({
themeConfig: './theme.config.tsx',
});

module.exports = withNextra();
module.exports = withNextra({
output: 'export',
distDir: 'dist',
images: {
unoptimized: true,
},
});

0 comments on commit 4832a19

Please sign in to comment.