web/vite.config.ts

8 lines
166 B
TypeScript
Raw Permalink Normal View History

2024-09-23 13:28:45 +01:00
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
2024-08-08 12:52:23 +01:00
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
2024-09-23 13:28:45 +01:00
});