Skip to content
Snippets Groups Projects
dev-client.js 245 B
Newer Older
  • Learn to ignore specific revisions
  • /* eslint-disable */
    require('eventsource-polyfill')
    var hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true')
    
    hotClient.subscribe(function (event) {
      if (event.action === 'reload') {
        window.location.reload()
      }
    })