initial commit

This commit is contained in:
2025-06-01 03:13:14 +02:00
parent bc0b94b6ad
commit cc10146f7e
67 changed files with 6334 additions and 2 deletions

14
vite.config.ts Normal file
View File

@@ -0,0 +1,14 @@
import path from "path"
import tailwindcss from "@tailwindcss/vite"
import react from "@vitejs/plugin-react"
import { defineConfig } from "vite"
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
})