I'm working on a vue app that has a store module that emits 50 events per second in certain scenarios. Those events are causing a vuex mutation to be commited each time. That makes it hard to use vue-devtools in other places since I cannot see any other events or mutations and within half a minute vue-devtools becomes unresponsive and it crashes.
I'm wondering if there is a way how to exclude certain vue events and vuex mutations from being rendered in vue-devtools.
Does anyone have a good idea how this could be done?
Best, Christian