fix(ui): add environment.prod.ts for production builds

This commit is contained in:
khalil liloulah
2026-04-02 15:27:56 +02:00
committed by khalil-bot
parent 781959240b
commit c5d65200ce
2 changed files with 9 additions and 2 deletions

4
ui/.gitignore vendored
View File

@@ -60,7 +60,7 @@ testem.log
.env
.env.local
.env.*.local
src/environments/environment.prod.ts
#src/environments/environment.prod.ts
# Keep environment.ts as template
# Build artifacts
@@ -90,4 +90,4 @@ Thumbs.db
*~
.tmp/
temp/
src/environments/environment.prod.ts
#src/environments/environment.prod.ts

View File

@@ -0,0 +1,7 @@
export const environment = {
production: true,
apiUrl: 'https://e2eeda.hes-so.ch/api',
wsUrl: 'wss://e2eeda.hes-so.ch/ws',
influxUrl: '',
logLevel: 'error',
};