import createMDX from '@next/mdx'; const nextConfig = createMDX({ extension: /\.mdx?$/u, })({ eslint: { ignoreDuringBuilds: true, }, experimental: { mdxRs: true, }, output: 'standalone', pageExtensions: ['js', 'jsx', 'ts', 'tsx', 'md', 'mdx'], reactStrictMode: true, transpilePackages: ['@repo/ui'], }); export default nextConfig;