Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Closes #1662 BREAKING CHANGES: usage of forRoot is now required for StoreRouterConnectingModule BEFORE: ```ts @NgModule({ imports: [ StoreRouterConnectingModule ] }) export class AppModule {} ``` AFTER: ```ts @NgModule({ imports: [ StoreRouterConnectingModule.forRoot() ] }) export class AppModule {} ```
- Loading branch information