Skip to content

Commit b500acf

Browse files
committed
Removing unneeded comments from gulp webpack
1 parent c7a492d commit b500acf

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

gulp/webpack.js

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,6 @@ gulp.task('webpack-dev-server', function(callback) {
1010
var server = new WebpackDevServer(webpack(config), {
1111
publicPath: '/__build__/',
1212
contentBase: 'src/public',
13-
14-
// Toggle this to enable _in code_ hot module replacement.
15-
// See hot-module.js / css for an example. If you're looking
16-
// to simply update css / js, set to false for a sufficent enough
17-
// page refresh. Otherwise you will need to wrap js requires
18-
// in the hot module loader accept callback in `app.js`.
1913
hot: true,
2014
inline: true,
2115
noInfo: true,
@@ -42,5 +36,4 @@ gulp.task('webpack', ['clean', 'webpack-dev-server'], function (callback) {
4236
colors: true
4337
}));
4438
});
45-
});
46-
39+
});

0 commit comments

Comments
 (0)