Reputation: 179
I am trying to use redux in my application but I am getting error as: The target entry-point "@angular-redux/store" has missing dependencies: - redux - redux-devtools-extension
Any suggestions.
Upvotes: 0
Views: 1634
Reputation: 1814
As it said,
please install it.
npm install redux-devtools-extension .
Eventhough its a dev dependency, this we've to install manually
Upvotes: 1
Reputation: 109
You can install implement redux in angular by three dependencies.
npm install redux --save
npm install @angular/core --save
npm install redux-devtools --save
Upvotes: 1
Reputation: 2597
Though they should have come in as dependencies with the initial package install, try manually installing redux
and redux-devtools
:
npm install redux
npm install redux-devtools
Upvotes: 0