fix(webpack): Update to errors plugin name

Plugin name was changed
This commit is contained in:
Berkeley Martinez
2018-01-09 08:05:29 -08:00
parent 85e19d3897
commit ef9fd51030

View File

@ -75,7 +75,7 @@ if (!__DEV__) {
} else {
module.exports.plugins.push(
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin(),
new webpack.NoEmitOnErrorsPlugin(),
// this will output a .html file in output.path
new Visualizer({ filename: 'webpack-bundle-stats.html' })
);