mirror of
https://github.com/pykeio/ort
synced 2026-04-25 16:34:55 +02:00
17 lines
249 B
JavaScript
17 lines
249 B
JavaScript
import nextra from 'nextra';
|
|
|
|
export default nextra({
|
|
search: {
|
|
codeblocks: true
|
|
},
|
|
codeHighlight: true,
|
|
defaultShowCopyCode: true,
|
|
contentDirBasePath: '/'
|
|
})({
|
|
reactStrictMode: true,
|
|
output: 'export',
|
|
images: {
|
|
unoptimized: true
|
|
}
|
|
});
|