I want to ignore all classes started with w- and all breakpoint width classes like lg:w- in Tailwind Utility classes.
This is what I did in my tailwind.config.js file:
purge: {
options: {
whitelistPatterns: [/^w-/]
}
},
But it seems not ignoring w- classes. How can I do this?