Add vite.config.ts

This commit is contained in:
2026-01-16 13:11:16 +00:00
parent dc26e4937f
commit dc994fe244

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()],
})