Add vite.config.ts

This commit is contained in:
2026-01-16 13:26:31 +00:00
parent 0270370cad
commit 0904516908

7
vite.config.ts Normal file
View File

@@ -0,0 +1,7 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
})