console/packages/web/docs/next.config.mjs
2022-10-19 10:35:02 +03:00

15 lines
284 B
JavaScript

import nextra from 'nextra';
const withNextra = nextra({
theme: 'nextra-theme-docs',
themeConfig: './theme.config.mjs',
unstable_staticImage: true,
});
export default withNextra({
poweredByHeader: false,
swcMinify: true,
compiler: {
styledComponents: true,
},
});