We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b98c70 commit c6c79a7Copy full SHA for c6c79a7
1 file changed
src/lib/core/index.ts
@@ -73,6 +73,16 @@ export async function init(): Promise<Core> {
73
}
74
});
75
76
+ const prefix = processor.config('prefix');
77
+ if (prefix) {
78
+ utilities = utilities.map(i => prefix + i);
79
+ for (const color of colors) {
80
+ color.label = prefix + color.label;
81
+ }
82
+ for (const dynamic of dynamics) {
83
+ dynamic.label = prefix + dynamic.label;
84
85
86
return {
87
processor,
88
colors,
0 commit comments