Error: No Provider for Store! in @ngrx 4.x
Turned out that some of my services imported the store via
import { Store } from '@ngrx/store/src/store'
Changing the imports to
import { Store } from '@ngrx/store'
fixed the problem.
Turned out that some of my services imported the store via
import { Store } from '@ngrx/store/src/store'
Changing the imports to
import { Store } from '@ngrx/store'
fixed the problem.