OnlineJudgeFE/build/dev-client.js

11 lines
258 B
JavaScript
Raw Permalink Normal View History

2016-10-29 16:58:34 +08:00
/* eslint-disable */
2017-11-10 22:04:40 +08:00
'use strict'
2016-10-29 16:58:34 +08:00
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()
}
})