Skip to content

Commit

Permalink
cli(init): Fix non-optimized option for splitChunks
Browse files Browse the repository at this point in the history
  • Loading branch information
EugeneHlushko committed Mar 21, 2018
1 parent c09f7fb commit fb83ead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/generators/init-generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ module.exports = class InitGenerator extends Generator {
this.configuration.config.webpackOptions.optimization = {
splitChunks: {
chunks: "'all'",
minSize: 1
minChunks: 1
}
};
done();
Expand Down

0 comments on commit fb83ead

Please sign in to comment.