diff --git a/next.config.mjs b/next.config.mjs index 98d7e18..0fafce8 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,14 +1,11 @@ -/** - * @type {import('next').NextConfig} - */ import nextra from "nextra"; -const nextConfig = {}; - const withNextra = nextra({ theme: "nextra-theme-docs", themeConfig: "./pages/docs-theme.config.jsx", latex: true, }); -module.exports = withNextra({ nextConfig }); +export default withNextra({ + // ... your Next.js config +});