Webpack module refers to multiple packaging issues

currently using:

minChunks: (module, count) => (
  count >= 2
)

you can package modules that reference more than twice;

but what I want to achieve is that
modules that are referenced many times package separately, rather than all in one file.

Mar.05,2021
Menu