Skip to content

Commit e2ef6cf

Browse files
committed
Fixed typo in console output on npm start
- HRM => HMR - updated case
1 parent 0e8d82a commit e2ef6cf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

server.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ compiler.plugin('done', () => {
2727
// Ensures that we log after webpack printed its stats (is there a better way?)
2828
setTimeout(() => {
2929
console.log('\n✓ The bundle is now ready for serving!\n');
30-
console.log(' Open in iframe Mode:\t\x1b[33m%s\x1b[0m', 'http://localhost:' + config.port + '/webpack-dev-server/');
31-
console.log(' Open in inline Mode:\t\x1b[33m%s\x1b[0m', 'http://localhost:' + config.port + '/\n');
32-
console.log(' \x1b[33mHRM is active\x1b[0m. The bundle will automatically rebuild and live-update on changes.')
30+
console.log(' Open in iframe mode:\t\x1b[33m%s\x1b[0m', 'http://localhost:' + config.port + '/webpack-dev-server/');
31+
console.log(' Open in inline mode:\t\x1b[33m%s\x1b[0m', 'http://localhost:' + config.port + '/\n');
32+
console.log(' \x1b[33mHMR is active\x1b[0m. The bundle will automatically rebuild and live-update on changes.')
3333
}, 350);
3434
}
3535
isInitialCompilation = false;

0 commit comments

Comments
 (0)