Files
WebHome/vite.config.ts
Wouter van Veelen 9354f02819 Hello world this
2025-11-02 23:25:40 +01:00

14 lines
288 B
TypeScript

import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
// https://vite.dev/config/
export default defineConfig({
plugins: [
react({
babel: {
plugins: [["babel-plugin-react-compiler"]],
},
}),
],
});