Image/website/next.config.js
2025-06-27 19:24:12 +08:00

22 lines
352 B
JavaScript

import nextra from 'nextra'
const withNextra = nextra({
theme: 'nextra-theme-docs',
themeConfig: './nextra.config.js',
staticImage: false,
latex: true,
search: {
codeblocks: false,
},
defaultShowCopyCode: true,
})
export default withNextra({
experimental: {
esmExternals: true,
},
images: {
unoptimized: true,
},
})