perf: remove name from production chunks

This commit is contained in:
Pooya Parsa 2018-03-13 15:49:45 +03:30
parent 182e3a552a
commit 992dd5f79c

View File

@ -82,7 +82,8 @@ module.exports = function webpackClientConfig() {
// Optimization
config.optimization = {
splitChunks: {
chunks: 'all'
chunks: 'all',
name: false
}
}