bd87e84742
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
11 lines
376 B
TypeScript
11 lines
376 B
TypeScript
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 },
|
|
});
|