Fix issue with components that using a custom decorator are not loaded during CSR

This commit is contained in:
Giuseppe Digilio
2021-01-15 14:18:18 +01:00
parent d8df9c46a5
commit 9aea3f20ea
15 changed files with 301 additions and 107 deletions

View File

@@ -106,8 +106,8 @@ import { ForbiddenComponent } from './forbidden/forbidden.component';
},
{
path: 'browse',
loadChildren: () => import('./+browse-by/browse-by.module')
.then((m) => m.BrowseByModule),
loadChildren: () => import('./+browse-by/browse-by-page.module')
.then((m) => m.BrowseByPageModule),
canActivate: [EndUserAgreementCurrentUserGuard]
},
{