1
0
mirror of https://github.com/r4sas/recastin-panel synced 2025-09-11 05:12:29 +00:00
2018-04-25 14:03:33 +02:00

10 lines
245 B
JavaScript

/* 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()
}
})