Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 401 Bytes

File metadata and controls

23 lines (14 loc) · 401 Bytes

Migration guide

This document serves as a migration guide for webpack-dev-server@6.0.0.

⚠ BREAKING CHANGES

  • Minimum supported Node.js version is 20.9.0.

Deprecations

  • The static methods internalIP and internalIPSync were removed. Use findIp instead.

    v4:

    const ip = Server.internalIP("v4");

    v5:

    const ip = Server.findIp("v4", true);