12. Debugging with Volto#

Low effort: console.log(). Don't leave it in production code, unless you really mean it.

React Developer tools allows you to inspect live components. You can check the component hierarchy, inspect props, hooks, HOCs, etc.

Redux Dev Tools allows you to observe the Redux actions and inspect the store state.

You can add debugger lines in your code, to trigger breakpoints in the browser. To debug the server, you need to hook the Chrome Inspector.