Skip to content

Commit

Permalink
Update update-guide.md remove ngrx from webpack config
Browse files Browse the repository at this point in the history
  • Loading branch information
KimFFVII authored Feb 19, 2024
1 parent af566e4 commit ccfe703
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions update-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,22 @@ effectProvidersForWorkaround.forEach((p) => (p.ɵprov.providedIn = null));
})
export class YourModule {}
```
- in your webpack.conifg.js remove any ngrx things that are defined in the ```shared: share ({...})``` property
- for example if you have following values in it, delete them
```
'@ngrx/store': {
...
},
'@ngrx/effects': {
...
},
'@ngrx/router-store': {
...
},
'@ngrx/store-devtools': {
...
},
```

## config key constants
- have been moved as an enum list with the name CONFIG_KEY
Expand Down

0 comments on commit ccfe703

Please sign in to comment.