12 lines
232 B
JavaScript
12 lines
232 B
JavaScript
|
import nextra from "nextra";
|
||
|
|
||
|
/** @type {import('next').NextConfig} */
|
||
|
const NextConfig = {};
|
||
|
|
||
|
const withNextra = nextra({
|
||
|
theme: "nextra-theme-docs",
|
||
|
themeConfig: "./theme.config.tsx",
|
||
|
});
|
||
|
|
||
|
export default withNextra(NextConfig);
|