feat: init vite
All checks were successful
Deploy to VPS (dist) / deploy (push) Successful in 9m29s

This commit is contained in:
Hewston Fox
2026-03-07 21:44:42 +02:00
parent 79a0465bb0
commit 06129b821e
16 changed files with 2520 additions and 90 deletions

7
vite.config.ts Normal file
View File

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