I really am loving the Redux Toolkit, but it has some warnings that I know I can safely ignore (non-serializable values in an action being sent to some thunks; in this case an API) but I want to make sure they do not show up in the shipped application.
I can't seem to find how to turn on production mode which would skip the "serializable-state-invariant-middleware" when I deploy a finished version to the browser. I know I could modify the list of middleware to avoid it, but that seems really clunky.