mirror of
https://github.com/graphql-hive/console
synced 2026-05-19 07:08:45 +00:00
14 lines
258 B
JavaScript
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,
|
|
},
|
|
});
|