26 lines
580 B
TypeScript
26 lines
580 B
TypeScript
import { Routes } from '@angular/router';
|
|
|
|
export const routes: Routes = [
|
|
{
|
|
path: 'componentes-test',
|
|
loadChildren: () =>
|
|
import('./features/componentes-test/componentes-test.routes').then((m) => m.routes)
|
|
},
|
|
{
|
|
path: 'store',
|
|
pathMatch: 'full',
|
|
redirectTo: ''
|
|
},
|
|
{
|
|
path: '',
|
|
loadChildren: () => import('./features/store/store.routes').then((m) => m.routes)
|
|
},
|
|
{
|
|
path: '**',
|
|
loadComponent: () =>
|
|
import('./shared/pages/route-not-found-page.component').then(
|
|
(m) => m.RouteNotFoundPageComponent,
|
|
)
|
|
}
|
|
];
|