mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-03-17 06:20:29 +00:00
8 lines
217 B
JavaScript
8 lines
217 B
JavaScript
import 'eventsource-polyfill';
|
|
import hotClient from 'webpack-hot-middleware/client?noInfo=true&reload=true';
|
|
|
|
hotClient.subscribe((event) => {
|
|
if (event.action === 'reload') {
|
|
window.location.reload();
|
|
}
|
|
});
|