Image/website/next.config.js
2022-04-22 00:50:32 +08:00

15 lines
264 B
JavaScript

import nextra from 'nextra'
const withNextra = nextra({
theme: 'nextra-theme-docs',
themeConfig: './nextra.config.js',
unstable_flexsearch: true,
unstable_staticImage: true,
})
export default withNextra({
experiments: {
esmExternals: true,
},
})