The console displays [HMR] waiting for update signal from WDS
Solution:
1. Find the following documents
node_ modules/webpack/hot/log.js
2. Comment out the following codes
module.exports = function(level, msg) {
// if (shouldLog(level)) {
// if (level === "info") {
// console.log(msg);
// } else if (level === "warning") {
// console.warn(msg);
// } else if (level === "error") {
// console.error(msg);
// }
// }
};