svrjs-nextjs-website/next.config.mjs

12 lines
232 B
JavaScript
Raw Normal View History

2024-06-24 10:02:18 +02:00
import nextra from "nextra";
2024-06-15 14:55:33 +02:00
/** @type {import('next').NextConfig} */
2024-06-24 10:02:18 +02:00
const NextConfig = {};
const withNextra = nextra({
theme: "nextra-theme-docs",
themeConfig: "./theme.config.tsx",
});
2024-06-15 14:55:33 +02:00
2024-06-24 10:02:18 +02:00
export default withNextra(NextConfig);