console/packages/web/docs/next.config.mjs

15 lines
258 B
JavaScript
Raw Normal View History

2022-05-18 07:26:57 +00:00
import nextra from 'nextra';
const withNextra = nextra({
theme: 'nextra-theme-docs',
themeConfig: './theme.config.mjs',
unstable_staticImage: true,
});
export default withNextra({
swcMinify: true,
compiler: {
styledComponents: true,
},
});