Initial app

This commit is contained in:
2026-06-01 15:33:47 -06:00
commit c7fc90204e
7 changed files with 2628 additions and 0 deletions

15
vite.config.js Normal file
View File

@@ -0,0 +1,15 @@
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [react()],
server: {
proxy: {
"/api": {
target: "http://localhost:8080",
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, ""),
},
},
},
});