svrjs-nextjs-website/next.config.mjs
2024-07-31 00:47:07 +05:30

11 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);