I would like to build all tailwind classes immediately with yarn in development so I have them all pre-built.
Why?
My problem is this:
I am "doing frontend" in my Laravel project as good as I can and am trying out all these different classes from tailwind. It seems to me that only the tailwind classes that are used in the project gets built on yarn run (or at start with yarn watch). This leads to a problem when I have my yarn watch active. As yarn watch only watches my scss files, and not my blades, it does not trigger a build when I add a novel tailwind class to a blade file. Hence I need to manually close the watch and restart it each time I use a novel class.
A solution that I am grasping for would be to, in dev, pre-build every tailwind class, even the so far unused ones. How could that be done?