jshmrtn/generator-jm-vuejs

View on GitHub
generators/app/templates/build/dev-client.js

Summary

Maintainability
A
0 mins
Test Coverage
/* eslint-disable no-console */
'use strict';

require('eventsource-polyfill');
const hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true');

hotClient.subscribe(function (event) {
  if (event.action === 'reload') {
    window.location.reload();
  }
});