2023-03-07 20:13:09 +00:00
|
|
|
const withNextra = require('nextra')({
|
|
|
|
theme: 'nextra-theme-docs',
|
|
|
|
themeConfig: './theme.config.jsx',
|
|
|
|
})
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
...withNextra(),
|
2024-03-05 16:27:33 +00:00
|
|
|
output: 'export',
|
2023-03-07 20:13:09 +00:00
|
|
|
images: {
|
|
|
|
unoptimized: true,
|
|
|
|
},
|
|
|
|
}
|