I have webpack looking for required css like this:
{
test: /\.css$/,
loader: 'style-loader!css-loader'
},
The problem is the css required by one component seems to be affecting other components. My understanding was that the css file required in a component would be scoped to that component and that component alone. Am I doing something the wrong way or is the functionaltiy I'm looking for not possible with webpack style loading?