For the complete documentation index, see llms.txt. This page is also available as Markdown.

Devtools

Plugin with integration with the Redux Devtools extension.

Devtools Screenshot

Install

The Devtools plugin can be installed using NPM:

Usage

Add the NgxsReduxDevtoolsPluginModule plugin to your root app module:

Options

The plugin supports the following options passed via the forRoot method:

  • disabled: Disable the devtools during production

  • maxAge: Max number of entries to keep.

  • actionSanitizer: Reformat actions before sending to dev tools

  • stateSanitizer: Reformat state before sending to devtools

Notes

You should always include the devtools as the last plugin in your configuration. For instance, if you were to include devtools before a plugin like the storage plugin, the initial state would not be reflected.

Last updated