hi guys i am getting this error during build project in angular
Property "forRoot" does not exist on type "typeof NgxJsonLdModule"
error TS2307: Cannot find module "./modules/home/home.module". 6 loadChildren: () => import("./modules/home/home.module").then(m => m.HomeModule)
Answer (1)
hi you can use these line of code
NgxJsonLdModule.forRoot(); //no need to call forRoot function;
@NgModule({
declarations: [AppComponent],
imports: [
AppRoutingModule,
NgtUniversalModule,
NgxJsonLdModule
],
providers: []
})
export class AppModule {}