Remove Dedupe plugin from webpack

https://webpack.github.io/docs/list-of-plugins.html#dedupeplugin – it's still experimental. This allows `make watch` to update correctly.
This commit is contained in:
Matthew Taylor 2015-11-19 10:28:53 -05:00 committed by Ray Schamp
parent ae8d4d8990
commit d9936af58f

View file

@ -60,7 +60,6 @@ module.exports = {
warnings: false
}
}),
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.optimize.DedupePlugin()
new webpack.optimize.OccurenceOrderPlugin()
]
};