Escrito el 13/08/2024
Angular: Lazy Loading de un componente standalone
{
path: 'about',
loadComponent: () => import('./pages/about/about.component').then(
(x) => x.AboutComponent
),
},
Ingeniero de Software de por algun lugar
{
path: 'about',
loadComponent: () => import('./pages/about/about.component').then(
(x) => x.AboutComponent
),
},