first commit

This commit is contained in:
Late Night Defender 2025-05-12 21:54:32 +07:00
commit fd1a4413c5
13 changed files with 4165 additions and 0 deletions

7
vite.config.js Normal file
View file

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