repack icon indicating copy to clipboard operation
repack copied to clipboard

Dose it support separate app and vendor entries ?

Open GitNiko opened this issue 2 years ago • 0 comments

like this:

module.exports = {
  //...
  optimization: {
    splitChunks: {
      cacheGroups: {
        vendor: {
          test: /[\\/]node_modules[\\/](react|react-dom)[\\/]/,
          name: 'vendor',
          chunks: 'all',
        },
      },
    },
  },
};

GitNiko avatar Sep 27 '22 01:09 GitNiko