Skip to content

mdxRs

Source URL: https://nextjs.org/docs/app/api-reference/config/next-config-js/mdxRs

This feature is currently experimental and subject to change, it is not recommended for production.

For experimental use with @next/mdx. Compiles MDX files using the new Rust compiler.

const withMDX = require('@next/mdx')()
/** @type {import('next').NextConfig} */
const nextConfig = {
pageExtensions: ['ts', 'tsx', 'mdx'],
experimental: {
mdxRs: true,
},
}
module.exports = withMDX(nextConfig)