Skip to content
This repository was archived by the owner on Jun 14, 2026. It is now read-only.
This repository was archived by the owner on Jun 14, 2026. It is now read-only.

webpack-dev-server spam on Firefox #19

Description

@k1sul1

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)
  }
}

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions