Angular and ngrx are currently at version 16.0.0.
StoreModule.forRoot({
app: appReducer,
anotherFeatureName: anotherFeatureReducer
}),
EffectsModule.forRoot([
AppEffects,
AnotherEffects
]),
I have begun the migration process to a standalone Angular application. As part of this transition, I need to remove StoreModule and EffectsModule from app.module.ts. However, I am struggling to find the correct way to provide multiple reducers and their corresponding effects using standalone APIs.
I have attempted various approaches, but none have yielded the expected results. The state remains undefined when the application tries to access it.