Hey, I have encountered a problem purging TailwindCSS while using the tailwindcss-forms plugin. The current purge setup deletes all base styles to reset the input elements.
My purge setup uses the hugo_stats.json file to look for used classes on build time. Unfortunately, the writeStats option within Hugo parses the generated HTML for tags, classes and id’s only. But not for HTML input types or other element attributes. E.g. if you have an input <input type="text"> , it will list the tag input but not the attribute type="text".
The @tailwindcss/forms package on the other side uses the css attribute selector [type='text'] to reset the base styles of the input elements. As the attribute [type='text'] is not listed in the hugo_stats.json file, these base styles will get purged.
The only solution I can think of is to add parsing for HTML element attributes to the Hugo HTML parser and add these to the hugo_stats.json file.
For the time being, a work around by adding the /* purgecss start ignore */ clause to the @import "tailwindcss/base" and @import "tailwindcss/components" statement fixes it.
I was wondering if you’ve made any progress on this issue or managed to find a workaround? I’m currently stuck on the same problem… I’ve tried to add a manual “content” with the classes to the postcss.config and tried whitelisting both without success…
Hey. No, unfortunately not real progress from my side on this issue. I startet to tweak the underlying code for the hugoStats file, but abandoned my efforts due to coding practices.
I don’t know how far the Hugo projects is currently on this issue, as I haven’t done anything with Hugo lately.
There is a workaround. Just exempt the tailwinds/base and tailwinds/components classes from purging by adding a /* purges start ignore */ comment. The Tailwindcss plug-ins will then be ignored during the purging stage. This will add some weight to the resulting css file, but not that much (around 16kb in the case of the `tailwinds/typography plug-in).
/* purgecss start ignore */
/* Tailwind base - put variables under: tailwind.config.js */
@import "node_modules/tailwindcss/base";
/* Tailwind component classes registered by plugins*/
@import "node_modules/tailwindcss/components";
/* purgecss end ignore */
/* Site Specific */
@import "assets/css/site";
/* Tailwind's utility classes - generated based on config file */
@import "node_modules/tailwindcss/utilities";
Note: If you want to contribute to Hugo by adding HTML input types or other element attributes to hugoStats, the publisher/htmlElementsCollector.go file is the right place to start.
For some strange reasons, this didn’t work as well… The issue I’m running into is that the reset classes of tailwind forms were still purged. I’ve now worked around this by copying the reset-code into a dedicated css file and referencing this file instead. This has the additional advantage, that the resulting css file is still rather small.
Unfortunately I’ve never worked with Go, so I’m not sure if I’ll be able to help with the underlying issue…
It’s on my list of things to fix. I assume you can add these selectors to the safelist in purge config (those can be regexps, so you should able to match those).
I was hurt by this too, in production purgecss ran, and my css acting on [x-cloak] was omitted. With AlpineJS it is pretty important to set display:none for x-cloak attribute, so elements don’t show up transiently until AlpineJS loads.
Had to add x-cloak to the safelist, but was painful to find out the problem. Would be nice if this worked somehow.