dev-client.js 242 B

123456789
  1. 'use strict';
  2. require('eventsource-polyfill');
  3. var hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true');
  4. hotClient.subscribe(function (event) {
  5. if (event.action === 'reload') {
  6. window.location.reload();
  7. }
  8. });