trying to include all tailwind utility classes #15547
Replies: 1 comment
-
This would not really be possible for v3 – there's an infinite amount of classes possible (due to the arbitrary features) and even without these, if you really wanted every single class possible, you would need to generate every possible combination of the variants, (like Footnotes
|
Beta Was this translation helpful? Give feedback.
-
I'm building a theme for wordpress and I know that letting tailwind scan your HTML and then include only the necessary classes is a neat feature, but when someone who is using my theme adds a custom HTML block to their page and includes some tailwind classes that weren't included during the build, that's a problem. So I want to just include all the tailwind utility classes, just include the whole library.
I've tried content []; I've tried purge: false, neither works. I still get a pretty stripped down tailwind.min.css file that barely includes any classes.
Beta Was this translation helpful? Give feedback.
All reactions