diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index ee00600..90a3e6b 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -8,7 +8,7 @@ import { TravelComponent } from './pages/travel/travel.component'; const routes: Routes = [ { path: '', - redirectTo: '/home', + redirectTo: 'home', pathMatch: 'full' }, { @@ -29,7 +29,7 @@ const routes: Routes = [ }, { path: '**', - redirectTo: '/home' + redirectTo: 'home' } ];