diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/next.config.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/next.config.js b/doc/next.config.js index 0bc8949..52fa434 100644 --- a/doc/next.config.js +++ b/doc/next.config.js @@ -32,11 +32,11 @@ // knowledge of the CeCILL license and that you accept its terms. const withNextra = require('nextra')({ - theme: 'nextra-theme-docs', - themeConfig: './theme.config.tsx' + theme: "nextra-theme-docs", + themeConfig: "./theme.config.tsx" }) -module.exports = withNextra() - -// If you have other Next.js configurations, you can pass them as the parameter: -// module.exports = withNextra({ /* other next.js config */ }) +module.exports = withNextra({ + output: "export", + distDir: "out" +}) |
