razzle-plugin-mdx
This package contains a plugin for using mdx with Razzle
Usage in Razzle Projects
npm i razzle-plugin-mdx
or
yarn add razzle-plugin-mdx
Using the plugin with the default options
// razzle.config.jsmodule.exports = {  plugins: ['mdx'],};Files with .md extension will be loaded as markdown and transpiled to html markup.
example:
import Document from './Document.md';const Example = () => (<Document />);With custom options:
// razzle.config.jsconst images = require('remark-images');const emoji = require('remark-emoji');module.exports = {  plugins: [    {      name: 'mdx',      options: {        remarkPlugins: [images, emoji],      },    },  ],};Options
Check all the options here: mdx-js options.