update to nextra 3

This commit is contained in:
2024-10-21 16:03:54 +02:00
parent 768bbce8b3
commit dcef283b92
11 changed files with 2955 additions and 1984 deletions

View File

@@ -1,12 +1,13 @@
const withNextra = require('nextra')({
import nextra from 'nextra'
const withNextra = nextra({
theme: 'nextra-theme-docs',
themeConfig: './theme.config.jsx',
})
module.exports = {
...withNextra(),
export default withNextra({
output: 'export',
images: {
unoptimized: true,
},
}
})