add /api proxy

This commit is contained in:
Egor Pozharov
2026-04-14 17:30:43 +06:00
parent 9c9f01b2f2
commit 9abc1e3888
4 changed files with 23 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
const API_BASE_URL = import.meta.env.VITE_API_URL || 'http://localhost:8080';
const API_BASE_URL = import.meta.env.VITE_API_URL || '';
// Request deduplication cache
const pendingRequests = new Map<string, Promise<unknown>>();