feat: scaffold react dashboard

This commit is contained in:
MythEclipse
2026-05-14 20:24:41 +07:00
parent da5e191b0f
commit 71a28085d2
9 changed files with 253 additions and 79 deletions

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

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