Skip to content

Commit

Permalink
Remove duplicate route definition for 'welcome'
Browse files Browse the repository at this point in the history
  • Loading branch information
vnobo committed Oct 12, 2024
1 parent b47d065 commit c230a1d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion ng-web/src/app/app.routes.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { Routes } from '@angular/router';

export const routes: Routes = [
{ path: 'welcome', loadChildren: () => import('./pages/welcome/welcome.routes').then(m => m.WELCOME_ROUTES) },
{ path: 'welcome', loadChildren: () => import('./pages/welcome/welcome.routes').then(m => m.WELCOME_ROUTES) },
{ path: 'home', loadChildren: () => import('./pages/home/home.routes').then(m => m.HOME_ROUTES) },
{ path: '', pathMatch: 'full', redirectTo: '/welcome' },
Expand Down

0 comments on commit c230a1d

Please sign in to comment.