We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e2ae69 commit 8d63330Copy full SHA for 8d63330
packages/next-mdx/readme.md
@@ -24,14 +24,14 @@ const withMDX = require('@next/mdx')()
24
module.exports = withMDX()
25
```
26
27
-Optionally you can provide [MDX options](https://github.com/mdx-js/mdx#options):
+Optionally you can provide [MDX plugins](https://mdxjs.com/advanced/plugins#plugins):
28
29
```js
30
// next.config.js
31
const withMDX = require('@next/mdx')({
32
options: {
33
- mdPlugins: [],
34
- hastPlugins: [],
+ remarkPlugins: [],
+ rehypePlugins: [],
35
},
36
})
37
0 commit comments