tailwind-merge icon indicating copy to clipboard operation
tailwind-merge copied to clipboard

merge rounded error!

Open hymhub opened this issue 5 months ago • 2 comments

tailwind config:

// tailwind.config.ts
export default {
// ...
  theme: {
    extend: {
      borderRadius: {
        layout: '16px'
      }
    }
  }
}

error:

twMerge('rounded-layout', 'rounded-none')  // output -> rounded-layout rounded-none
twMerge('!rounded-layout', '!rounded-none')  // output -> !rounded-layout !rounded-none

hymhub avatar Sep 14 '24 03:09 hymhub