skills/prototypes/pi-web-ui-lan/vite.config.ts
dan 131fb86852 feat(prototypes): add pi-web-ui-lan prototype
LAN-accessible web UI for pi agent interaction.
2026-01-24 09:40:43 -08:00

11 lines
179 B
TypeScript

import { defineConfig } from "vite";
export default defineConfig({
resolve: {
conditions: ["production", "browser", "module", "default"],
},
server: {
port: 5173,
},
});