You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
323B

  1. import { Routes } from '@angular/router';
  2. export const routes: Routes = [
  3. {
  4. path: ':id',
  5. loadComponent: () => import('./pages/home/home.component').then(m => m.HomeComponent),
  6. },
  7. {
  8. path: '**',
  9. loadComponent: () => import('./pages/not-found/not-found.component').then(m => m.NotFoundComponent)
  10. }
  11. ];