mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-05-08 23:26:33 +00:00
* wip: vuex structure * add missing files * client: do not fail dev build on eslint error * eslint does not block compilation, mount app when data is ready * eslintrc.js -> eslintrc
9 lines
259 B
JavaScript
9 lines
259 B
JavaScript
/* eslint-disable */
|
|
require('eventsource-polyfill')
|
|
var hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true&overlay=false')
|
|
|
|
hotClient.subscribe(function (event) {
|
|
if (event.action === 'reload') {
|
|
window.location.reload()
|
|
}
|
|
})
|