Skip to content

Commit

Permalink
fix Es6 code issue.
Browse files Browse the repository at this point in the history
This file is not transpiled, so we should stick to ES5
  • Loading branch information
LinusBorg authored Oct 11, 2017
1 parent 05148da commit 9937176
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion template/build/dev-client.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable */
'use strict'
require('eventsource-polyfill')
const hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true')
var hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true')

hotClient.subscribe(function (event) {
if (event.action === 'reload') {
Expand Down

0 comments on commit 9937176

Please sign in to comment.