Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

webpack-dev-server spam on Firefox #19

Open
k1sul1 opened this issue Sep 25, 2018 · 0 comments
Open

webpack-dev-server spam on Firefox #19

k1sul1 opened this issue Sep 25, 2018 · 0 comments
Labels

Comments

@k1sul1
Copy link
Contributor

k1sul1 commented Sep 25, 2018

image

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)
  }
}
@k1sul1 k1sul1 added the wontfix label Sep 25, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant