feat: React tabanli yönetim panelini ekle

This commit is contained in:
2026-03-21 11:53:12 +03:00
parent 62add37d9d
commit d07bc365f5
11 changed files with 2590 additions and 0 deletions

10
frontend/vite.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
},
});