blob: 97d6746d6622a5178eb6dad1af813f6d5c0ff623 (
plain)
1
2
3
4
5
6
7
8
9
|
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react-swc';
import React from 'react';
import {plugin as mdPlugin, Mode} from 'vite-plugin-markdown';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), mdPlugin({mode: [Mode.HTML, Mode.REACT]})],
});
|