From bb82ed55c84dde59f669a091b7430d6c80ac4fb0 Mon Sep 17 00:00:00 2001 From: Gokul Date: Thu, 21 May 2026 13:03:39 +0530 Subject: [PATCH] fix --- src/components/TopicView.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/TopicView.jsx b/src/components/TopicView.jsx index c31883d..88bbed0 100644 --- a/src/components/TopicView.jsx +++ b/src/components/TopicView.jsx @@ -12,6 +12,7 @@ function toProxyPath(fullUrl) { return fullUrl.slice(LEGACY_BASE_URL.length) } // REST API (jupiter.nearle.app): Proxy requests through local server to avoid CORS issues + // and support proxying to your local Go backend (http://localhost:1009). if (fullUrl.startsWith(REST_BASE_URL)) { return fullUrl.slice(REST_BASE_URL.length) }