Is it possible to change the localIdentName
when using CSS modules in Webpack so that I can apply multiple class names?
My ultimate goal is to do something like this:
css?modules&localIdentName=[[name]-[local] [hash]]
where the class names that ultimately get applied are:
component-local hash
.
The reason for this is so that I can apply my CSS safely whilst still exposing a nice human readable class name to those who want to override my CSS styles globally instead of them using the hash which changes every build.