vite-plugin-xdm
๐ค
Why? xdm is distributed as ESM-only, which makes it difficult to use in Vite.js projects that have any CJS dependencies.
This plugin is a light wrapper around xdm that can receive plugins as promises,
simplifying the usage to avoid async
and await
wrappers.
๐ฟ
Installation Install the package as a development dependency:
npm i -D vite-plugin-xdm # yarn add -D vite-plugin-xdm
๐
Usage You can provide any options that xdm would receive for MDX compilation.
import { defineConfig } from 'vite'
import xdm from 'vite-plugin-xdm'
export default defineConfig({
plugins: [
xdm(
remarkPlugins: [
'remark-frontmatter',
import('remark-mdx-frontmatter').then(mod =>
[(mod.default || mod).remarkMdxFrontmatter, { name: 'frontmatter' }]
),
],
rehypePlugins: [
['@mapbox/rehype-prism', { alias: { markup: ['html', 'vue'] } }],
],
),
],
})
Promises are also supported with rehypePlugins
.
Acknowledgements
- xdm โ Excellent library, fast, and very well documented.
License
This library is available as open source under the terms of the MIT License.