您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

dev-client.js 245 B

3 年前
123456789
  1. /* eslint-disable */
  2. require('eventsource-polyfill')
  3. var hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true')
  4. hotClient.subscribe(function (event) {
  5. if (event.action === 'reload') {
  6. window.location.reload()
  7. }
  8. })