Add pi web POC

This commit is contained in:
Federico Jaramillo Martinez
2026-05-07 11:12:23 +02:00
parent c9d82667df
commit adf9087e84
17 changed files with 6618 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { defineConfig } from "vite";
export default defineConfig({
root: "src/client",
build: {
outDir: "../../dist/client",
emptyOutDir: true,
},
server: {
port: 5173,
proxy: {
"/api": "http://localhost:3000",
},
},
});