feat: scaffolding client Vite/React + design system Gruvbox
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -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 },
|
||||
});
|
||||
Reference in New Issue
Block a user