Webpack imports the same styles multiple times
That's not an issue with webpack, more with your use of CSS.
Since CSS assets are compiled statically, each stylesheet importing global
has a copy in it.
You could use Less, and the @import (reference) statement
, or if you prefer CSS then load it separately and don't import it every time.