mirror of
https://github.com/Brooooooklyn/Image.git
synced 2025-12-08 18:36:03 +00:00
22 lines
352 B
JavaScript
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,
|
|
},
|
|
})
|