Skip to content

Commit

Permalink
[Issue comixed#170] Opt-out of strict immutability of NgRx state.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcpierce committed Mar 14, 2020
1 parent 89cce13 commit cb4e1f1
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion comixed-frontend/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,17 @@ import { TooltipModule } from 'primeng/tooltip';
BrowserAnimationsModule,
AppRouting,
HttpClientModule,
StoreModule.forRoot({}),
StoreModule.forRoot(
{},
{
runtimeChecks: {
strictStateSerializability: false,
strictActionSerializability: false,
strictStateImmutability: false,
strictActionImmutability: false
}
}
),
EffectsModule.forRoot([]),
MenubarModule,
SidebarModule,
Expand Down

0 comments on commit cb4e1f1

Please sign in to comment.