From a5ff515fd7d480252170a80970752d9a6032f715 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joe=20K=C3=BCng?= Date: Mon, 2 Feb 2026 18:48:06 +0100 Subject: [PATCH] feat(web): add auth for dev enviroment --- frontend/src/environments/environment.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/environments/environment.ts b/frontend/src/environments/environment.ts index f838d5c..bc16350 100644 --- a/frontend/src/environments/environment.ts +++ b/frontend/src/environments/environment.ts @@ -1,5 +1,5 @@ export const environment = { production: false, - apiUrl: 'http://localhost:8000', - basicAuth: '' // Format: 'username:password' + apiUrl: 'https://dev.3d-fab.ch', + basicAuth: 'fab:0presura' // Format: 'username:password' };