Initial commit

This commit is contained in:
Emre
2025-09-30 05:14:15 +03:00
commit 3446641911
35 changed files with 4166 additions and 0 deletions

12
vite.config.js Normal file
View File

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