Let’s say I have some named chunks:
import(/* webpackChunkName: "featureA" */ './featureA')
import(/* webpackChunkName: "featureB" */ './featureB')
import(/* webpackChunkName: "featureC" */ './featureC')
Webpacks generates this named chunks and a non named chunk with common modules. Is it possible to generate only named chunks without placing common modules in a separate chunk?
It looks like this can be done via SplitChunksPlugin