-
Notifications
You must be signed in to change notification settings - Fork 38
fix(devtools): Fixed AOT bug when providing devtools config options #52
Conversation
Also exposed the configuration options to the instrumentOnlyWithExtension method
tx for the fix, so do we use it like before or there is new syntax? |
@born2net no new syntax, you can use it the same way as before. |
great tx |
Published as v3.2.3 |
Hello! It seems the same issue occurs with @ngrx/store-log-monitor as Could it be? Thx |
@IT-Ideas in order to use export function instrumentOptions() {
return {
monitor: useLogMonitor({ visible: true, position: 'right' })
};
}
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
FormsModule,
HttpModule,
StoreDevtoolsModule.instrumentStore(instrumentOptions)
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {} |
@brandonroberts Thank you, it works! I created Pull request in @ngrx/store-log-monitor with the readme.md updated accordingly. |
Where is the definition of: Angular 2 Kitchen sink: http://ng2.javascriptninja.io Sean |
tx! |
Also exposed the configuration options to the instrumentOnlyWithExtension method
Docs also updated to reflect usage of
maxAge
with extensionCloses #48, #51