mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-04-03 16:24:28 +03:00
Explicitly tell devTools should be called after in the composed
functions list.
This commit is contained in:
parent
8a2ce42268
commit
239ec691f2
|
@ -29,7 +29,7 @@ A live-editing time travel environment for [Redux](https://github.com/rackt/redu
|
|||
npm install --save-dev redux-devtools
|
||||
```
|
||||
|
||||
DevTools is a [store enhancer](http://rackt.github.io/redux/docs/Glossary.html#store-enhancer), which should be added to your middleware stack *after* [`applyMiddleware`](http://rackt.github.io/redux/docs/api/applyMiddleware.html) as `applyMiddleware` is potentially asynchronous. Otherwise, DevTools won’t see the raw actions emitted by asynchronous middleware such as [redux-promise](https://github.com/acdlite/redux-promise) or [redux-thunk](https://github.com/gaearon/redux-thunk).
|
||||
DevTools is a [store enhancer](http://rackt.github.io/redux/docs/Glossary.html#store-enhancer), which should be added to your middleware stack *after* [`applyMiddleware`](http://rackt.github.io/redux/docs/api/applyMiddleware.html) in the `compose`d functions, as `applyMiddleware` is potentially asynchronous. Otherwise, DevTools won’t see the raw actions emitted by asynchronous middleware such as [redux-promise](https://github.com/acdlite/redux-promise) or [redux-thunk](https://github.com/gaearon/redux-thunk).
|
||||
|
||||
To install, firstly import `devTools` into your root React component:
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user