The NGRX documentation for Router-Store only showcases an example with .forRoot()
. Upon experimenting with .forFeature()
, I realized that this static method does not exist.
I am interested in defining certain actions and effects to be utilized within my feature module, as well as the app module.
Is there a recommended approach for implementing router-store within feature modules?