Some checks failed
Build and publish Docker image / Build and push (push) Failing after 1m27s
Java 21 / Spring Boot 3.5.3 multi-module Maven project. Hybrid BM25+HNSW search with RRF, cross-encoder reranker, ONNX Runtime 1.22.0 (CPU + CUDA 12 GPU variants).
14 lines
431 B
TypeScript
14 lines
431 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [sveltekit()],
|
|
server: {
|
|
proxy: {
|
|
'/api': { target: 'http://localhost:8080', changeOrigin: true, ws: false },
|
|
'/mcp': { target: 'http://localhost:8080', changeOrigin: true, ws: false },
|
|
'/actuator': { target: 'http://localhost:8080', changeOrigin: true, ws: false }
|
|
}
|
|
}
|
|
});
|