With nuxt, every time I save any of my files, my console gets flooded with [HMR]
messages. Often cluttering up most of the log levels, making it hard to see actual console output.
One of few approaches I have found is to clear the console. On reload. However, this approach does not fit my needs and seems excessive to stop these messages.
Another approach was to disable autoConnect
however, this led to other issues.
Filtering out the messages in the browser, still let multiple HMR
messages come through, and would not be persistent. Plus it has the added downside of cluttering up the filter.
Does anyone else have any ideas?