https://github.com/rive/doc-vite-plugin
Vite Plugin to wrap MDX and necessary Markdown plugins
https://github.com/rive/doc-vite-plugin
Last synced: 16 days ago
JSON representation
Vite Plugin to wrap MDX and necessary Markdown plugins
- Host: GitHub
- URL: https://github.com/rive/doc-vite-plugin
- Owner: rive
- License: mit
- Created: 2024-01-07T03:25:15.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-09T05:51:44.000Z (over 2 years ago)
- Last Synced: 2025-11-28T15:46:17.776Z (7 months ago)
- Language: TypeScript
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# @rive/doc-vite-plugin
Vite Plugin to wrap MDX and necessary Markdown plugins
## Install
```bash
npm i -D @rive/doc-vite-plugin
```
## Usage
```ts
// vite.config.ts
import { defineConfig } from 'vite';
import doc from '@rive/doc-vite-plugin';
export defult defineConfig({
plugins: [doc()]
});
```