# Redux DevTools

`ng-state` 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
StoreModule.provideStore(initialState, false, {
    debugger: {
        options: { enableDevToolsOutput: false }
    }
})
```

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](https://vytautas.gitbook.io/ng-state/debugging/automated-changes-output).

#### Demo

![](https://2483127471-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-La0zIK2BFiXY6Eig7aR%2F-Lce_mXN0J_JdShG1av2%2F-Lcea9u0MFfl49A6omv_%2Freduxtools.gif?alt=media\&token=1f1cafb4-2fea-472b-ab2c-aa5cb3d208d3)
