How should i solve this error
EXCEPTION: Uncaught (in promise): Error: Cannot find module "app/home/home.module"
Answer (1)
hi use this
{
path: "user",
//use full path
loadChildren: () => import("app/modules/user/user.module").then(m => m.UserModule)
}
allow full path
// Full path including `src` at the start:
loadChildren: "src/app/customers/customers.module#CustomersModule"