mirror of
https://github.com/System-End/hackpad.git
synced 2026-04-19 23:32:54 +00:00
14 lines
296 B
TypeScript
14 lines
296 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react-swc'
|
|
import mdx from "@mdx-js/rollup"
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
// {enforce: 'pre', ...mdx({
|
|
// extensions: ['.mdx'],
|
|
// })},
|
|
mdx(),
|
|
react(),
|
|
],
|
|
})
|