mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 22:47:17 +00:00
15 lines
284 B
JavaScript
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,
|
|
},
|
|
});
|