审查视图

build/dev-client.js 253 字节
朱兆平 authored
1 2 3 4 5
/* eslint-disable */
require('eventsource-polyfill')
var hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true')

hotClient.subscribe(function (event) {
6 7 8
    if (event.action === 'reload') {
        window.location.reload()
    }
朱兆平 authored
9
})