mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-05-19 22:43:41 +03:00
Merge remote-tracking branch 'gaearon/master'
This commit is contained in:
commit
fb228b6f78
|
@ -7,7 +7,9 @@ A better README is coming. But if you insist...
|
||||||
|
|
||||||
### Installation
|
### Installation
|
||||||
|
|
||||||
It's out on NPM as `redux-devtools@0.1.0`.
|
```
|
||||||
|
npm install --save-dev redux-devtools
|
||||||
|
```
|
||||||
|
|
||||||
[This commit](https://github.com/gaearon/redux-devtools/commit/0a2a97556e252bfad822ca438923774bc8b932a4) should give you an idea about how to add Redux DevTools for your app **but make sure to only apply `devTools()` in development!** In production, this will be terribly slow because actions just accumulate forever. (We'll need to implement a rolling window for dev too.)
|
[This commit](https://github.com/gaearon/redux-devtools/commit/0a2a97556e252bfad822ca438923774bc8b932a4) should give you an idea about how to add Redux DevTools for your app **but make sure to only apply `devTools()` in development!** In production, this will be terribly slow because actions just accumulate forever. (We'll need to implement a rolling window for dev too.)
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ export function getDefaultStyle(props) {
|
||||||
|
|
||||||
return {
|
return {
|
||||||
position: 'fixed',
|
position: 'fixed',
|
||||||
zIndex: 999,
|
zIndex: 10000,
|
||||||
fontSize: 17,
|
fontSize: 17,
|
||||||
overflow: 'hidden',
|
overflow: 'hidden',
|
||||||
opacity: 0.9,
|
opacity: 0.9,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user