Sending Search Response to RTVI

This commit is contained in:
Filipi Fuchter
2025-01-24 18:59:46 -03:00
parent 7c52736ff6
commit 07c84b733b
17 changed files with 2328 additions and 12 deletions

View File

@@ -0,0 +1,13 @@
import { defineConfig } from 'vite';
export default defineConfig({
server: {
proxy: {
// Proxy /api requests to the backend server
'/connect': {
target: 'http://0.0.0.0:7860', // Replace with your backend URL
changeOrigin: true,
},
},
},
});