You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For whatever reason, Firefox and webpack-dev-server don't like each other. I think that the problem is in self signed certificates, as this doesn't happen if HTTPS isn't used.
Workaround:
disable HTTPS in webpack config, or override console.log. In Chrome you can use -WDS as filter to disable these messages if they happen.
const _log = console.log
console.log = function () {
if (arguments[0].indexOf('[HMR]') === -1) {
return _log.apply(console, arguments)
}
}
The text was updated successfully, but these errors were encountered:
For whatever reason, Firefox and webpack-dev-server don't like each other. I think that the problem is in self signed certificates, as this doesn't happen if HTTPS isn't used.
Workaround:
disable HTTPS in webpack config, or override console.log. In Chrome you can use
-WDS
as filter to disable these messages if they happen.The text was updated successfully, but these errors were encountered: