From 24f82742f72140f6ba4a23e1e1bd2cd4eacf8759 Mon Sep 17 00:00:00 2001 From: sanchezvem Date: Thu, 28 May 2026 15:09:20 +0100 Subject: [PATCH] Fixed error with redirect of login page --- src/app/app.routes.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts index 4580d5e..3d480f3 100644 --- a/src/app/app.routes.ts +++ b/src/app/app.routes.ts @@ -1,6 +1,11 @@ import {Routes} from '@angular/router'; export const routes: Routes = [ + { + path: '', + pathMatch: 'full', + redirectTo: '/login' + }, { path: 'login', loadComponent: () => import('./pages/login/login').then(x => x.Login)