MDX v1.0.0-alpha.0


Webpack

MDX provides a loader that needs to be used in tandem with the babel-loader.

Basic Setup

For webpack projects you can define the following webpack.config.js extension handler for .md/.mdx files:

module.exports = {
  module: {
    rules: [
      {
        test: /.mdx?$/,
        use: ['babel-loader', '@mdx-js/loader']
      }
    ]
  }
}

It’s important to note that the MDX loader is followed by the babel-loader so that the JSX can be transpiled to JavaScript.