Skip to content

Commit

Permalink
Fix HMR being broken because of missing hashing info
Browse files Browse the repository at this point in the history
Fixes #1366
  • Loading branch information
SpaceK33z committed Apr 8, 2018
1 parent 3d3d912 commit e1b263a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Server.js
Expand Up @@ -25,7 +25,7 @@ const createLog = require('./createLog');
const OptionsValidationError = require('./OptionsValidationError');
const optionsSchema = require('./optionsSchema.json');

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

function Server(compiler, options, _log) {
// Default options
Expand Down

0 comments on commit e1b263a

Please sign in to comment.