blob: 03d4f4bf8576733669858498dd4e6c6e65ae5fc6 [file] [log] [blame]
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { PageNotFoundComponent } from '@shared/components/pageNotFound/pageNotFound.component';
const appRoutes: Routes = [
{ path: '', redirectTo: '/overview', pathMatch: 'full' },
{ path: '**', component: PageNotFoundComponent },
];
@NgModule({
imports: [RouterModule.forRoot(appRoutes)],
exports: [RouterModule],
})
export class AppRoutingModule {}