UNPKG

bkui-cli-template-webpack4-saas

Version:

bkui-cli-template-webpack4-saas

15 lines (12 loc) 298 B
/** * @file for hot-reload * @author <%- author %> */ /* eslint-disable */ import 'eventsource-polyfill' import hotClient from 'webpack-hot-middleware/client?noInfo=true&reload=true' hotClient.subscribe(event => { if (event.action === 'reload') { window.location.reload() } })