memoir/next.config.js

14 lines
219 B
JavaScript
Raw Normal View History

2024-10-21 14:03:54 +00:00
import nextra from 'nextra'
const withNextra = nextra({
2023-03-07 20:13:09 +00:00
theme: 'nextra-theme-docs',
themeConfig: './theme.config.jsx',
})
2024-10-21 14:03:54 +00:00
export default withNextra({
2024-03-05 16:27:33 +00:00
output: 'export',
2023-03-07 20:13:09 +00:00
images: {
unoptimized: true,
},
2024-10-21 14:03:54 +00:00
})