From 2e36b06aeaf2cbc7b0910a6b5fef7545e2f7f951 Mon Sep 17 00:00:00 2001 From: Polianin Nikita Date: Fri, 23 Aug 2024 23:16:20 +0300 Subject: [PATCH] build: fix port of test server --- src/environments/environment.development.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/environments/environment.development.ts b/src/environments/environment.development.ts index c62fde0..d080eeb 100644 --- a/src/environments/environment.development.ts +++ b/src/environments/environment.development.ts @@ -1,5 +1,5 @@ export const environment = { - apiUrl: 'http://localhost:5269/api/', + apiUrl: 'http://localhost:8080/api/', maxRetry: 5, retryDelay: 1500 };