feat: scaffold React frontend with Tailwind and Layonara theme

This commit is contained in:
plenarius
2026-04-20 18:37:07 -04:00
parent c7de3c13a7
commit 47d0ee60c0
7 changed files with 118 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
proxy: {
"/api": "http://localhost:3000",
"/ws": {
target: "ws://localhost:3000",
ws: true,
},
},
},
});