mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 01:19:30 +08:00
13 lines
288 B
Text
13 lines
288 B
Text
import { expandVariantGroup } from '@unocss/core';
|
|
|
|
function transformerVariantGroup(options = {}) {
|
|
return {
|
|
name: "variant-group",
|
|
enforce: "pre",
|
|
transform(s) {
|
|
expandVariantGroup(s, options.separators);
|
|
}
|
|
};
|
|
}
|
|
|
|
export { transformerVariantGroup as default };
|