mirror of
https://github.com/Brooooooklyn/Image.git
synced 2025-12-08 18:36:03 +00:00
19 lines
315 B
JavaScript
19 lines
315 B
JavaScript
import nextra from 'nextra'
|
|
|
|
const withNextra = nextra({
|
|
theme: 'nextra-theme-docs',
|
|
themeConfig: './nextra.config.js',
|
|
staticImage: true,
|
|
latex: true,
|
|
flexsearch: {
|
|
codeblocks: false,
|
|
},
|
|
defaultShowCopyCode: true,
|
|
})
|
|
|
|
export default withNextra({
|
|
experimental: {
|
|
esmExternals: true,
|
|
},
|
|
})
|