import createMDX from '@next/mdx' /** @type {import('next').NextConfig} */ const nextConfig = { pageExtensions: ['js', 'jsx', 'mdx', 'ts', 'tsx'], reactCompiler: true, experimental: { turbopackFileSystemCacheForDev: true, }, } const withMDX = createMDX({ options: { remarkPlugins: [], rehypePlugins: [], }, }) export default withMDX(nextConfig)