Guest User

Untitled

a guest
Dec 13th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. plugins: [
  2. new webpack.optimize.CommonsChunkPlugin({
  3. name: 'vendor',
  4. minChunks: function (module) {
  5. return module.context && module.context.indexOf('node_modules') !== -1;
  6. }
  7. }),
  8. new webpack.optimize.CommonsChunkPlugin({
  9. name: 'manifest',
  10. minChunks: Infinity
  11. })
  12. ]
Add Comment
Please, Sign In to add comment