vitalii-andriiovskyi / ngx-owl-carousel-o

owl-carousel for Angular >=6
MIT License
174 stars 51 forks source link

Error using module federation #234

Open danielguaycha opened 1 year ago

danielguaycha commented 1 year ago

I am using version 14.0.1 but with module federation, using the library: link

It works correctly without this library, but when exposing the module and importing it into the HOST, it generates the following exception

image

The module that I am exposing to federate looks like this

@NgModule({
  imports: [
    CommonModule,
    FormsModule,
    MarketHomeRouting,
    CarouselModule
  ],
  exports: [],
  declarations: [
    IndexComponent,
    MasterComponent,
  ],
  providers: [
  ],
})
export class MarketHomeModule {
}