I want to have one tag per required .css file.
I want it like that because I want to connect chrome dev-tools workspace feature to my src folder, so I could edit my css files directly from the browser.
Here's my research on loaders:
- style-loader only loads into style tags
- style-loader/url + file-loader doesn't work (I tried the README example)
- extract-text-webpack-plugin seems to only generate ONE bundle per ALL css files with default configuration.
- The Modify Files section in extract-text-webpack-plugin suggests that with multiple entry points, it's possible to generate multiple bundles, so I thought that it might be possible to abuse this feature to get the behaviour I want.
This is of course for development and I don't intend on serving my css this way.