CSS Modules 处理器
实现 CSS Modules 作用域化类名生成,支持 <style module> 语法。
<style module>
.button
.button__hash123
{ "button": "button__hash123" }
:local()
:global()
<style module> .button { color: red; } </style>
编译后:
.button__a1b2c3 { color: red; }