Skip to main content

devTools

devTools({ ...opts })

The store can be viewed using the Redux Dev Tools Extension.

If you are using multiple named stores, the devTools plugin must be registered on each store you want to use it on.

devTools options

PropertyDescription
timeTravelShould the plugin support time travel.
import { register, devTools } from "carry-on-store";

register(devTools({ timeTravel: false }));