mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-14 05:07:22 +01:00
11 lines
262 B
JavaScript
11 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();
|
|
}
|
|
});
|