UNPKG

@astrojs/mdx

Version:

Add support for MDX pages in your Astro site

8 lines (7 loc) 244 B
import type { Plugin } from 'vite'; import type { MdxOptions } from './index.js'; export interface VitePluginMdxOptions { mdxOptions: MdxOptions; srcDir: URL; } export declare function vitePluginMdx(opts: VitePluginMdxOptions): Plugin;