8 lines
249 B
TypeScript
8 lines
249 B
TypeScript
import { defineConfig } from "vite";
|
|
import react, { reactCompilerPreset } from "@vitejs/plugin-react";
|
|
import babel from "@rolldown/plugin-babel";
|
|
|
|
export default defineConfig({
|
|
plugins: [react(), babel({ presets: [reactCompilerPreset()] })],
|
|
});
|