mirror of
https://github.com/jetkvm/website.git
synced 2025-09-16 08:38:16 +00:00
9 lines
199 B
TypeScript
9 lines
199 B
TypeScript
import { defineConfig } from "cva";
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
export const { cva, cx, compose } = defineConfig({
|
|
hooks: {
|
|
onComplete: className => twMerge(className),
|
|
},
|
|
});
|