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'],};
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.