I have an issue where I'm running the default configuration for Vite and Tailwind in a Laravel 10 installation along with Breeze (Blade stack). When working on views and I add a new, unused previously Tailwind class to the view, this new class will not compile and thus it won't reflect its properties in the view.
The most basic example to reproduce this issue is spinning up a fresh Laravel 10 install and then install Breeze. Go to the dashboard page and start toying around with Tailwind. Once you add an unused class in the current project it will not compile the class (for example bg-orange-400 which is not something you'd see in the default installation). Any other class already in use, or text changes will show fine, and the page is reloading fine. It's just that new classes are not being compiled.
I've already tried configuring the suggested watcher in the docs but it isn't helping.
Any ideas? Thanks in advance!