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/', };