From 70c5c1bf4eb25a9a9bd3c2dc3c18bce756b25f8f Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Mon, 5 Aug 2024 17:22:46 +0200 Subject: [PATCH] =?UTF-8?q?chore:=20environment.apiUrl-Konfiguration=20auf?= =?UTF-8?q?=20/api=20ge=C3=A4ndert?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ClientApp/staff-db-ui/src/assets/js/environment.js | 2 +- ClientApp/staff-db-ui/src/environments/develop/environment.js | 2 +- .../staff-db-ui/src/environments/production/environment.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ClientApp/staff-db-ui/src/assets/js/environment.js b/ClientApp/staff-db-ui/src/assets/js/environment.js index 949aeaf..ba42fa9 100644 --- a/ClientApp/staff-db-ui/src/assets/js/environment.js +++ b/ClientApp/staff-db-ui/src/assets/js/environment.js @@ -8,7 +8,7 @@ const environment = { production: false, // apiUrl: 'https://localhost:60191/api', // apiUrl: 'https://staffdb.hensel-recycling.com:50001/api', - apiUrl: 'https://staffdb.hensel-recycling.com:50101/api', + apiUrl: '/api', sentry_dsn: '', useLoginWithJWT: true, translationFolder: './assets/translate/', diff --git a/ClientApp/staff-db-ui/src/environments/develop/environment.js b/ClientApp/staff-db-ui/src/environments/develop/environment.js index 627e463..3a751c7 100644 --- a/ClientApp/staff-db-ui/src/environments/develop/environment.js +++ b/ClientApp/staff-db-ui/src/environments/develop/environment.js @@ -1,7 +1,7 @@ const environment = { production: false, useLoginWithJWT: true, - apiUrl: 'https://staffdb.hensel-recycling.com:50101/api', + apiUrl: '/api', sentry_dsn: '', translationFolder: './assets/translate/' }; diff --git a/ClientApp/staff-db-ui/src/environments/production/environment.js b/ClientApp/staff-db-ui/src/environments/production/environment.js index 0a7dc32..36d179e 100644 --- a/ClientApp/staff-db-ui/src/environments/production/environment.js +++ b/ClientApp/staff-db-ui/src/environments/production/environment.js @@ -1,7 +1,7 @@ const environment = { production: true, useLoginWithJWT: true, - apiUrl: 'https://staffdb.hensel-recycling.com:50101/api', + apiUrl: '/api', sentry_dsn: '', translationFolder: './assets/translate/', };