import { createMDX } from 'fumadocs-mdx/next'; const withMDX = createMDX(); /** @type {import('next').NextConfig} */ const config = { reactStrictMode: true, // This app has its own lockfile alongside the repo root one; pin the workspace // root to silence Next's "multiple lockfiles" inference warning. turbopack: { root: import.meta.dirname }, async rewrites() { return [ { source: '/docs/:path*.mdx', destination: '/llms.mdx/docs/:path*', }, ]; }, }; export default withMDX(config);