From 95215fa8b1bbbf66d63d9a55e2ce3b1f14ef75ae Mon Sep 17 00:00:00 2001 From: Andrii Solianyk Date: Fri, 29 May 2026 23:58:35 +0200 Subject: [PATCH] UPDATE: Change default API URL to localhost for local development --- src/config/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/api.js b/src/config/api.js index 4556183..939ec07 100644 --- a/src/config/api.js +++ b/src/config/api.js @@ -1,4 +1,4 @@ -const DEFAULT_API_URL = "/api/v1"; +const DEFAULT_API_URL = "http://localhost:8080/api/v1"; const trimTrailingSlash = (value) => value.replace(/\/+$/, "");