Open mo-ib opened 8 years ago
@mibgs this is a technique used to create "local" scopes for CSS styles. basically every class specified this way becomes unique. if you want to reuse styles, see the composes
rule https://github.com/webpack/css-loader
@mibgs You can avoid this behavior by wrapping the rules in :global
, see https://github.com/erikras/react-redux-universal-hot-example/issues/556.
@trueter @frankleng The problem is not the css class name, it's the animation name (___Y_AjN). Why are these being serialized?
I've feel like I'm breaking the cool new rules by doing this, but it's the only way I could think to get out of my own way so I can keep working:
@mibgs see your point.
I do think this is a bug in css-loader. looks like wrapping in :global
is the right way to go, for now.
or this https://github.com/webpack/css-loader/issues/166