# Redux DevTools

`react-state-rxjs` integrates with Redux DevTools.

It is enabled by default but you can disable it for example in production by setting false to `enableDevToolsOutput` under debugger

```typescript
ReactState
    .debugger(true, { enableDevToolsOutput: false })
    .init((routerHistory: History) => {
        hydrate(<Main history={routerHistory} />, document.getElementById("example"))
    }, initialState, isProd);
```

If initial debugging is not started changes are reflected after invoking `window.state.debug.start()`&#x20;

Remember that you can also track different [parts of your state](/react-state-rxjs/debugging/automated-changes-output.md).

#### Demo

![](/files/-LcV85O_r79jET5gBop3)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://vytautaspranskunas.gitbook.io/react-state-rxjs/debugging/redux-devtools.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
