chore: environment.apiUrl-Konfiguration auf /api geändert

This commit is contained in:
Developer 02 2024-08-05 17:22:46 +02:00
parent b43a769216
commit 70c5c1bf4e
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ const environment = {
production: false, production: false,
// apiUrl: 'https://localhost:60191/api', // apiUrl: 'https://localhost:60191/api',
// apiUrl: 'https://staffdb.hensel-recycling.com:50001/api', // apiUrl: 'https://staffdb.hensel-recycling.com:50001/api',
apiUrl: 'https://staffdb.hensel-recycling.com:50101/api', apiUrl: '/api',
sentry_dsn: '', sentry_dsn: '',
useLoginWithJWT: true, useLoginWithJWT: true,
translationFolder: './assets/translate/', translationFolder: './assets/translate/',

View File

@ -1,7 +1,7 @@
const environment = { const environment = {
production: false, production: false,
useLoginWithJWT: true, useLoginWithJWT: true,
apiUrl: 'https://staffdb.hensel-recycling.com:50101/api', apiUrl: '/api',
sentry_dsn: '', sentry_dsn: '',
translationFolder: './assets/translate/' translationFolder: './assets/translate/'
}; };

View File

@ -1,7 +1,7 @@
const environment = { const environment = {
production: true, production: true,
useLoginWithJWT: true, useLoginWithJWT: true,
apiUrl: 'https://staffdb.hensel-recycling.com:50101/api', apiUrl: '/api',
sentry_dsn: '', sentry_dsn: '',
translationFolder: './assets/translate/', translationFolder: './assets/translate/',
}; };