I am trying to follow this link to use the Ngrx DevTools. But Ionic uses @ionic/angular-toolkit, and we need to enable the Ngrx Schematics which replaces that. Is there a way to have both?
Changes in Angular.json
"cli": {
--"defaultCollection": "@ionic/angular-toolkit"
++"defaultCollection": "@ngrx/schematics"
},
@ionic/angular-toolkit: Angular Schematics and Builders for @ionic/angular apps
I was able to use the ngrx schematics to generate my stores for my Ionic 5 app by:
This seemed to allow me to get it done -- until Ionic provides an update to their schematics for this.
Yes, this is a hack, and requires me to do this each time that I want to gen a store, but it allows me to use ngrx tools, would like to learn a cleaner way from someone!