Files
NoteNextra-origin/next.config.mjs
2024-11-17 22:05:00 -06:00

11 lines
300 B
JavaScript

import nextra from 'nextra'
const withNextra = nextra({
theme: 'nextra-theme-blog',
themeConfig: './theme.config.jsx'
})
export default withNextra()
// If you have other Next.js configurations, you can pass them as the parameter:
// export default withNextra({ /* other next.js config */ })