CoolFace
Apppublic

opusdev/vector-similarity-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
vite.config.js21 linesDownload Raw Back to frontend
1import { defineConfig } from 'vite'2import react from '@vitejs/plugin-react'3 4export default defineConfig({5  plugins: [react()],6   server: {7    proxy: {8      '/search':   'http://localhost:7860',9      '/like':     'http://localhost:7860',10      '/likes':    'http://localhost:7860',11      '/random':   'http://localhost:7860',12      '/posts':    'http://localhost:7860',13      '/rag':      'http://localhost:7860',14      '/stats':    'http://localhost:7860',15      '/similar':  'http://localhost:7860',16      '/health':   'http://localhost:7860',17      '/debug':    'http://localhost:7860',18    }19  }20})21