added frontend

This commit is contained in:
2026-01-11 18:37:45 -05:00
parent 8afa4fce6c
commit 0615ece46a
23 changed files with 5912 additions and 0 deletions

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

@@ -0,0 +1,11 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
server: {
proxy: {
"/api": "http://localhost:8000",
},
},
});