This app is trying to load the BookModule lazily with this configuration:
const routes: Routes = [
{ path: "", redirectTo: "/books", pathMatch: "full" },
{
path: "books",
loadChildren: "./modules/book/book.module#BookModule",
canActivate: [AuthGuard]
},
{ path: "login", component: LoginComponent }
];
And it's producing the error:
Error: Cannot find 'BookModule' in './modules/book/book.module'
Thoughts?