rsnext/packages/next-mdx
2022-10-23 20:16:03 -07:00
..
index.d.ts Add type definitions for next/mdx (#36815) 2022-05-29 05:21:25 +00:00
index.js (next/mdx) set providerImportSource to react by default (#39954) 2022-08-26 15:45:53 -05:00
license.md Update license year 2022-01-13 16:02:34 +01:00
package.json v12.3.2-canary.36 2022-10-23 20:16:03 -07:00
readme.md Fix mdx docs (#40402) 2022-09-09 12:12:36 -07:00

Next.js + MDX

Use MDX with Next.js

Installation

npm install @next/mdx @mdx-js/loader @mdx-js/react

or

yarn add @next/mdx @mdx-js/loader @mdx-js/react

Usage

Create a next.config.js in your project

// next.config.js
const withMDX = require('@next/mdx')()
module.exports = withMDX()

Optionally you can provide MDX plugins:

// next.config.js
const withMDX = require('@next/mdx')({
  options: {
    remarkPlugins: [],
    rehypePlugins: [],
  },
})
module.exports = withMDX()

Optionally you can add your custom Next.js configuration as parameter

// next.config.js
const withMDX = require('@next/mdx')()
module.exports = withMDX({
  webpack(config, options) {
    return config
  },
})

Optionally you can match other file extensions for MDX compilation, by default only .mdx is supported

// next.config.js
const withMDX = require('@next/mdx')({
  extension: /\.(md|mdx)$/,
})
module.exports = withMDX()

Top level .mdx pages

Define the pageExtensions option to have Next.js handle .md and .mdx files in the pages directory as pages:

// next.config.js
const withMDX = require('@next/mdx')({
  extension: /\.mdx?$/,
})
module.exports = withMDX({
  pageExtensions: ['js', 'jsx', 'ts', 'tsx', 'md', 'mdx'],
})

TypeScript

Follow this guide from the MDX docs.