Spaces:
Runtime error
Runtime error
File size: 522 Bytes
0558aa4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react-swc';
export default defineConfig({
plugins: [react()],
server: {
host: '0.0.0.0', // Bind to all interfaces
port: 5173, // Back to default Vite port
proxy: {
// Proxy /api requests to the backend server
'/connect': {
target: 'http://0.0.0.0:7860', // Replace with your backend URL if needed
changeOrigin: true,
},
},
},
});
|