Skip to content

Instantly share code, notes, and snippets.

@pranay321
Created June 30, 2019 07:58
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save pranay321/cd2638334d8beaec9b0c020d48839327 to your computer and use it in GitHub Desktop.
Extract the vendor and the runtime code
change
splitChunks: {
chunks: 'all',
name: false,
},
to
splitChunks: {
cacheGroups: {
commons: {
test: /[\\/]node_modules[\\/]/,
name: 'vendor',
chunks: 'initial',
},
},
},
which extract main bundle and vendor bundle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment