From 8afb553158d54226663f44127c987591db2245e8 Mon Sep 17 00:00:00 2001 From: Bangara Raju Kottedi Date: Thu, 2 May 2024 17:41:14 +0530 Subject: [PATCH] router not match fix --- src/app/app-routing.module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index 2293f74..733f153 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -12,7 +12,7 @@ const routes: Routes = [ { path: 'projects', component: ProjectsComponent, title: "Bangara Raju - Projects" }, { path: 'weblog', component: BlogComponent, title: "Bangara Raju - Posts" }, { path: 'contact', component: ContactComponent, title: "Bangara Raju - Contact" }, - { path: '**', redirectTo: ''} + { path: '**', redirectTo: '/'} ]; @NgModule({