Last active
March 18, 2020 11:58
-
-
Save paularmstrong/cc18a7372010c46c65021809e095931b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const plugins = [ | |
// extract vendor and webpack's module manifest | |
new webpack.optimize.CommonsChunkPlugin({ | |
names: [ 'vendor', 'manifest' ], | |
minChunks: Infinity | |
}), | |
// extract common modules from all the chunks (requires no 'name' property) | |
new webpack.optimize.CommonsChunkPlugin({ | |
async: true, | |
children: true, | |
minChunks: 4 | |
}) | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nudge...