The NgChakansModule
is located in the ng-chakans and packaged into a redistributable package with the ng-packagr tool.
Import the NgChakansModule
from the npm package like this:
import { NgChakansModule } from 'ng-chakans';
And add it to you application module:
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
NgChakansModule.forRoot({
serverApiUrl: '/'
}) // <- Important part
],
providers: [],
bootstrap: [AppComponent]
})