I have a React application with Components written in ES6 - transpiled via Babel and Webpack.
In some places I would like to include specific CSS files with specific
Make sure you are using the loaders in your webpack config:
module: { loaders: [ { test: /\.jsx$/, exclude: /node_modules/, loader: "babel" }, { test: /\.css$/, loader: "style!css" } ] }