Last active
September 13, 2017 19:47
-
-
Save jkusachi/ccb262d159d9bf6a67a51eefecf44eb2 to your computer and use it in GitHub Desktop.
help filter out noise in chrome dev tools when using hot module reload n stuff
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// hide HMR and GET | |
/^((?!HMR|GET).)*$/ | |
// Hide Warnings | |
/^((?!warning).)*$/ | |
// Hide all | |
/^((?!warning|HMR|GET).)*$/ | |
// wrap regex in / / if using Canary | |
ie: | |
/^((?!warning).)*$/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment