Project

General

Profile

1
import { NgModule } from '@angular/core';
2
import { RouterModule } from '@angular/router';
3

    
4
@NgModule({
5
  imports: [
6
    RouterModule.forChild([
7
      { path: '', redirectTo: '/home', pathMatch: 'full' }
8
    ])
9
  ],
10
})
11
export class AppRoutingModule { }
(1-1/3)