mdxRs (experimental)

Warning: The mdxRs configuration is an experimental feature. This configuration strategy will likely change in the future.

@next/mdx와 함께 실험적으로 사용합니다. 새로운 Rust 컴파일러를 사용하여 MDX 파일을 컴파일합니다.

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