There are several possible reasons why HMR may not be work. This document will cover most common causes and provide guidance for troubleshooting. Please refer to the following content for troubleshooting.
Before starting the troubleshooting process, it is helpful to have a basic understanding of how HMR works:
hot-update.(js|json)
request to the dev server to load the newly compiled module.After understanding the principle of HMR, you can follow these steps for basic troubleshooting:
Open the browser console and check for the presence of the [HMR] connected.
log.
ws://[host]:[port]/rsbuild-hmr
request. If the request is failed, this indicates that the HMR failed because the WebSocket connection was not successfully established.There can be various reasons why the WebSocket connection fails to establish, such as using a network proxy that prevents the WebSocket request from reaching the dev server. You can check whether the WebSocket request address matches your dev server address. If it does not match, you can configure the WebSocket request address using dev.client.
When you modify the code of a module and trigger a recompilation, the browser sends several hot-update.json
and hot-update.js
requests to the dev server to fetch the updated code.
You can try modifying a module and inspect the content of the hot-update.(js|json)
requests. If the content of the request is the latest code, it indicates that the hot update request is working correctly.
If the content of the request is incorrect, it is likely due to a network proxy. Check whether the address of the hot-update.(js|json)
request matches your dev server address. If it does not match, you need to adjust the proxy rules to route the hot-update.(js|json)
request to the dev server address.
If the above two steps do not reveal any issues, it is possible that other factors are causing the HMR to fail. For example, it could be that the code does not meet React's requirements for HMR. You can refer to the following questions for further troubleshooting.
To ensure that HMR works properly, we need to use the development builds of React and ReactDOM.
If you exclude React via externals
when bundling, the production build of React is usually injected through CDN, and this can cause HMR to fail.
To solve this problem, you need to reference the React development artifacts and install React Devtools, then hot reloading will work properly.
If you are unsure about the type of React build you are using, you can refer to the React documentation - Use the Production Build.
Usually, we only set the filename hash in the production mode (i.e., when process.env.NODE_ENV === 'production'
).
If you set the filename hash in the development mode, it may cause HMR to fail (especially for CSS files). This is because every time the file content changes, the hash value changes, preventing tools like mini-css-extract-plugin from reading the latest file content.
If https is enabled, the HMR connection may fail due to a certificate issue, and if you open the console, you will get an HMR connect failed error.
The solution to this problem is to click on "Advanced" -> "Proceed to some page (unsafe)" on the Chrome problem page.
Tips: When accessing the page through Localhost, the words "Your connection is not private" may not appear and can be handled by visiting the Network domain.