import { createMDX } from 'fumadocs-mdx/next' const withMDX = createMDX() /** @type {import('next').NextConfig} */ const config = { reactStrictMode: true, experimental: { webpackMemoryOptimizations: true, webpackBuildWorker: true, }, async redirects() { return [ { source: '/', destination: '/introduction', permanent: true, }, ] }, async rewrites() { return [ { source: '/:path*.mdx', destination: '/llms.mdx/:path*', }, ] }, } export default withMDX(config)