DocsGPT/docs/next.config.js

10 lines
287 B
JavaScript
Raw Normal View History

2023-09-07 11:36:39 +00:00
const withNextra = require('nextra')({
theme: 'nextra-theme-docs',
themeConfig: './theme.config.jsx'
})
module.exports = withNextra()
2023-09-07 11:36:39 +00:00
// If you have other Next.js configurations, you can pass them as the parameter:
// module.exports = withNextra({ /* other next.js config */ })