diff --git a/lib/builder/webpack/client.config.js b/lib/builder/webpack/client.config.js index 1d0a2088ae..0a5578d5af 100644 --- a/lib/builder/webpack/client.config.js +++ b/lib/builder/webpack/client.config.js @@ -82,8 +82,9 @@ module.exports = function webpackClientConfig() { // Optimization config.optimization = { splitChunks: { - chunks: 'all', - name: this.options.dev + chunks: 'all' + // TODO: uncomment after https://github.com/jantimon/html-webpack-plugin/issues/878 solved + // name: this.options.dev } }