From c501d9aada98aa55d1694e7d9d80e7148208f2c4 Mon Sep 17 00:00:00 2001 From: Gabriel De Los Rios Date: Sun, 14 Dec 2025 16:07:28 -0300 Subject: [PATCH] fix: add fallback route --- src/app/app.routes.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts index 84c521d..1a24264 100644 --- a/src/app/app.routes.ts +++ b/src/app/app.routes.ts @@ -7,4 +7,8 @@ export const routes: Routes = [ component: Main, pathMatch: 'full', }, + { + path: '**', + redirectTo: '', + } ];