Skip to content

Commit e1b263a

Browse files
committed
Fix HMR being broken because of missing hashing info
Fixes #1366
1 parent 3d3d912 commit e1b263a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const createLog = require('./createLog');
2525
const OptionsValidationError = require('./OptionsValidationError');
2626
const optionsSchema = require('./optionsSchema.json');
2727

28-
const clientStats = { all: false, assets: true, warnings: true, errors: true, errorDetails: false };
28+
const clientStats = { all: false, assets: true, warnings: true, errors: true, errorDetails: false, hash: true };
2929

3030
function Server(compiler, options, _log) {
3131
// Default options

0 commit comments

Comments
 (0)