hbpatcher/vite.config.ts

9 lines
205 B
TypeScript
Raw Permalink Normal View History

import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import mdx from "@mdx-js/rollup";
2025-11-22 06:28:10 +01:00
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), mdx()],
});