mirror of
https://github.com/cupcakearmy/memoir.git
synced 2024-12-22 08:06:27 +00:00
14 lines
219 B
JavaScript
14 lines
219 B
JavaScript
import nextra from 'nextra'
|
|
|
|
const withNextra = nextra({
|
|
theme: 'nextra-theme-docs',
|
|
themeConfig: './theme.config.jsx',
|
|
})
|
|
|
|
export default withNextra({
|
|
output: 'export',
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
})
|