Keys Must Only Be Unique Among Siblings
Keys used within arrays should be unique among their siblings. However they don’t need to be globally unique.
Since map builds a new array, using it when you aren't using the returned array is an anti-pattern; use forEach or for...of instead.
{ test: /\.css$/, loader: ['style-loader', 'css-loader']},