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
npm run build
I 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:Jump to solution
Found the solution, I had to run
composer update
in the parent Laravel app to publish the new assets (the css file).1 Reply
Solution
Found the solution, I had to run
composer update
in the parent Laravel app to publish the new assets (the css file).