svrjs-nextjs-website/next.config.mjs

12 lines
232 B
JavaScript
Raw Normal View History

2024-07-30 21:17:07 +02:00
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);