@mdx-js/loader
Version:
Webpack loader for MDX
238 lines (164 loc) • 5.67 kB
Markdown
for MDX.
<!-- more -->
* [What is this?](
* [When should I use this?](
* [Install](
* [Use](
* [API](
* [`mdx`](
* [`Options`](
* [Examples](
* [Combine with Babel](
* [Types](
* [Compatibility](
* [Security](
* [Contribute](
* [License](
This package is a webpack loader to support MDX.
This integration is useful if you’re using webpack (or another tool that uses
webpack, such as Next.js or Rspack).
This integration can be combined with the Babel loader to compile modern
JavaScript features to ones your users support.
If you want to evaluate MDX code then the lower-level compiler (`@mdx-js/mdx`)
can be used manually.
## Install
This package is [ESM only][esm].
In Node.js (version 16+), install with [npm][]:
```sh
npm install @mdx-js/loader
```
## Use
Add something along these lines to your `webpack.config.js`:
```tsx
/**
* @import {Options} from '@mdx-js/loader'
* @import {Configuration} from 'webpack'
*/
/** @type {Configuration} */
const webpackConfig = {
module: {
// …
rules: [
// …
{
test: /\.mdx?$/,
use: [
{
loader: '@mdx-js/loader',
/** @type {Options} */
options: {/* jsxImportSource: …, otherOptions… */}
}
]
}
]
}
}
export default webpackConfig
```
See also [¶ Next.js][next] and [¶ Vue CLI][vue-cli], if you’re using webpack
through them, for more info.
This package exports no identifiers.
The default export is [`mdx`][api-mdx].
This package exports a [webpack][] plugin as the default export.
Configuration (see [`Options`][api-options]) are passed separately through
webpack.
Configuration (TypeScript type).
Options are the same as [`CompileOptions` from `@mdx-js/mdx`][compile-options]
with the exception that the `SourceMapGenerator` and `development` options are
supported based on how you configure webpack.
You cannot pass them manually.
If you use modern JavaScript features you might want to use Babel through
[`babel-loader`][babel-loader] to compile to code that works in older browsers:
```tsx
/**
* @import {Options} from '@mdx-js/loader'
* @import {Configuration} from 'webpack'
*/
/** @type {Configuration} */
const webpackConfig = {
module: {
// …
rules: [
// …
{
test: /\.mdx?$/,
use: [
// Note that Webpack runs right-to-left: `@mdx-js/loader` is used first, then
// `babel-loader`.
{loader: 'babel-loader', options: {}},
{
loader: '@mdx-js/loader',
/** @type {Options} */
options: {}
}
]
}
]
}
}
export default webpackConfig
```
This package is fully typed with [TypeScript][].
It exports the additional type [`Options`][api-options].
See [§ Types][types] on our website for information.
Projects maintained by the unified collective are compatible with maintained
versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line, `@mdx-js/loader@^3`,
compatible with Node.js 16.
See [§ Security][security] on our website for information.
See [§ Contribute][contribute] on our website for ways to get started.
See [§ Support][support] for ways to get help.
This project has a [code of conduct][coc].
By interacting with this repository, organization, or community you agree to
abide by its terms.
[ ][] © Compositor and [Vercel][]
[ ]:
[ ]:
[ ]: https://webpack.js.org/loaders/babel-loader/
[ ]: https://opencollective.com/unified/backers/badge.svg
[ ]: https://github.com/mdx-js/mdx/actions
[ ]: https://github.com/mdx-js/mdx/workflows/main/badge.svg
[ ]: https://github.com/mdx-js/mdx/discussions
[ ]: https://img.shields.io/badge/chat-discussions-success.svg
[ ]: https://github.com/mdx-js/.github/blob/main/code-of-conduct.md
[ ]: https://opencollective.com/unified
[ ]: https://mdxjs.com/packages/mdx/#compileoptions
[ ]: https://mdxjs.com/community/contribute/
[ ]: https://codecov.io/github/mdx-js/mdx
[ ]: https://img.shields.io/codecov/c/github/mdx-js/mdx/main.svg
[ ]: https://www.npmjs.com/package/@mdx-js/loader
[ ]: https://img.shields.io/npm/dm/@mdx-js/loader.svg
[ ]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c
[ ]: https://github.com/mdx-js/mdx/blob/main/packages/loader/license
[ ]: https://mdxjs.com/getting-started/#nextjs
[ ]: https://docs.npmjs.com/cli/install
[ ]: https://mdxjs.com/getting-started/#security
[ ]: https://opencollective.com/unified/sponsors/badge.svg
[ ]: https://mdxjs.com/community/support/
[ ]: https://mdxjs.com/getting-started/#types
[ ]: https://www.typescriptlang.org
[ ]: https://vercel.com
[ ]: https://mdxjs.com/getting-started/#vue-cli
[ ]: https://webpack.js.org
[![Build][build-badge]][build]
[![Coverage][coverage-badge]][coverage]
[![Downloads][downloads-badge]][downloads]
[![Sponsors][sponsors-badge]][collective]
[![Backers][backers-badge]][collective]
[![Chat][chat-badge]][chat]
webpack loader