From 92b28206a085c47e6d05d8346afcca4f3690a6fa Mon Sep 17 00:00:00 2001 From: Sebastian Beltran Date: Sat, 16 May 2026 14:46:37 -0500 Subject: [PATCH] feat: add hot option for hot module replacement --- .changeset/hot-middleware-migration.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/hot-middleware-migration.md diff --git a/.changeset/hot-middleware-migration.md b/.changeset/hot-middleware-migration.md new file mode 100644 index 000000000..fcc54ef64 --- /dev/null +++ b/.changeset/hot-middleware-migration.md @@ -0,0 +1,5 @@ +--- +"webpack-dev-middleware": minor +--- + +Added a `hot` option that enables hot module replacement, replacing the need for `webpack-hot-middleware`. Pass `hot: true` to enable with defaults, or `hot: { path, heartbeat, log, statsOptions }` to customize. The client runtime is served by the middleware itself.