console/packages/web/docs/next.config.mjs
Kamil Kisiela dc3bc1ec87 Hello
2022-05-18 09:26:57 +02:00

14 lines
258 B
JavaScript

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,
},
});