Compiling Tailwind classes when contributing
First of all, thanks for the amazing work, Filament is a great package that I find myself using very frequently 
I've been making a few commits lately, and I can't seem to be able to load additional Tailwind classes that weren't part of the repo when I forked it, even after running
I can see the css being compiled in
I've been making a few commits lately, and I can't seem to be able to load additional Tailwind classes that weren't part of the repo when I forked it, even after running
npm run buildI can see the css being compiled in
/packages/panels/dist/theme.css, after I added a class to the wizard.blade.php view. Still, no modification when I reload the php server.Solution
Found the solution, I had to run
composer update in the parent Laravel app to publish the new assets (the css file).