feat: scaffolding client Vite/React + design system Gruvbox

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-05 04:18:33 +02:00
parent f6fcf4dbb6
commit bd87e84742
6 changed files with 908 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
root: "client",
plugins: [react()],
resolve: { alias: { "@shared": new URL("./shared", import.meta.url).pathname } },
server: { proxy: { "/api": { target: "http://localhost:8787", ws: true } } },
build: { outDir: "../dist/client", emptyOutDir: true },
});