mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-04-14 19:47:03 +00:00
10 lines
262 B
JavaScript
10 lines
262 B
JavaScript
/* global window:true */
|
|
|
|
require('eventsource-polyfill');
|
|
const hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true&overlay=false');
|
|
|
|
hotClient.subscribe(event => {
|
|
if (event.action === 'reload') {
|
|
window.location.reload();
|
|
}
|
|
});
|