Skip to content

Commit

Permalink
♻️ fix config error with nextra plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
ashiishme committed Sep 3, 2023
1 parent 36a05e5 commit 11e8054
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions docs/next.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
const withNextra = require('nextra')({
theme: 'nextra-theme-docs',
themeConfig: './theme.config.tsx',
output: 'export'
themeConfig: './theme.config.tsx'
})

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

0 comments on commit 11e8054

Please sign in to comment.