Description
Do you want to request a feature or report a bug?
bug/feature
What is the current behavior?
The css-loader doesn't put it's stuff under webpack://
as far as I can see: https://github.com/webpack-contrib/css-loader/blob/master/lib/loader.js#L117
(Ignore some of the weird absolute paths under webpack://, It's cause my package.json is pointing to a local package)
Also, if you are loading a couple of libraries built with webpack which happen to have the same path for a css file (ex: .../src/mystyles.css), you will get sourcemap collision.
If the current behavior is a bug, please provide the steps to reproduce.
any build using the css-loader would do.
What is the expected behavior?
css-loader should be able to be configured to specify the file template.
This is @sokra 's opinion on the issue here: webpack/webpack#5767 (comment)
If this is a feature request, what is motivation or use case for changing the behavior?
We are building libraries with webpack which we load at runtime in our main app. We want to be able to easily debug issues in development.
Please mention other relevant information such as your webpack version, Node.js version and Operating System.
Associated issue on the webpack side: webpack/webpack#5767