mirror of
https://github.com/KevinMidboe/vue-chartjs.git
synced 2025-10-29 09:50:21 +00:00
11 lines
258 B
JavaScript
11 lines
258 B
JavaScript
/* eslint-disable */
|
|
'use strict'
|
|
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()
|
|
}
|
|
})
|