Skip to content

Commit

Permalink
Fix deprecated webpack module
Browse files Browse the repository at this point in the history
webpack deprecated NoErrorsPlugin in favour of more expressively named NoEmitOnErrorsPlugin: webpack/webpack#3570
  • Loading branch information
jtojnar committed Feb 3, 2017
1 parent 2228164 commit e1e48c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack.config.js
Expand Up @@ -50,7 +50,7 @@ var config = {
filename: 'index.html'
}),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin(),
new webpack.NoEmitOnErrorsPlugin(),
],
resolveLoader: {
modules: [
Expand Down

0 comments on commit e1e48c3

Please sign in to comment.