Чтобы использовать Redux devtools, вам нужно установить @ ngrx / store-devtools и импортировать его в AppModule
- документы .
Установить с помощью:
npm install @ngrx/store-devtools --save
Импортируйте его с:
@NgModule({
imports: [
StoreModule.forRoot(reducers),
// Instrumentation must be imported after importing StoreModule (config is optional)
StoreDevtoolsModule.instrument({
maxAge: 25, // Retains last 25 states
logOnly: environment.production, // Restrict extension to log-only mode
}),
],
})
export class AppModule {}