Files
praxis/client/vite.config.ts
T
Praxis CI fbd6602814 docs(milestone): complete v0.1 foundation
---ci---
phase: 0
milestone: v0.1
status: complete
---/ci---
2026-08-01 13:32:48 +00:00

20 lines
459 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// Praxis v0.1 client config — proxies /pipecat to the Python server in dev.
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
proxy: {
'/pipecat': {
target: 'http://localhost:8789',
changeOrigin: true,
},
'/health': {
target: 'http://localhost:8789',
changeOrigin: true,
},
},
},
})