Guest User

Untitled

a guest
Aug 13th, 2018
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. module.exports = {
  2.   configureWebpack: {
  3.         splitChunks: {
  4.             cacheGroups: {
  5.                 node_vendors: {
  6.                     test: /[\\/]node_modules[\\/]/,
  7.                     chunks: "all",
  8.                     priority: 1
  9.                 }
  10.             }
  11.         }
  12.   }
  13. }
Add Comment
Please, Sign In to add comment