UPDATE: Change default API URL to localhost for local development

This commit is contained in:
2026-05-29 23:58:35 +02:00
parent 9d8ad779af
commit 95215fa8b1
+1 -1
View File
@@ -1,4 +1,4 @@
const DEFAULT_API_URL = "/api/v1"; const DEFAULT_API_URL = "http://localhost:8080/api/v1";
const trimTrailingSlash = (value) => value.replace(/\/+$/, ""); const trimTrailingSlash = (value) => value.replace(/\/+$/, "");