Reputation: 4662
I use assetic to compile less file in my symfony project, less files compiles with no error but generated css file (../web/app_dev.php/css/XXX.css) is same as before !
But when I check actual genereated file from direct url (../web/css/XXX.css) every thing is ok and all changes performed.
php console cache:clear
did not help.
Upvotes: 1
Views: 1403
Reputation: 2274
Clear your browser's cache AND your Symfony cache.
Browser's cache (expecially with Chrome) can be really aggresssive, and don't aknowledge immediately the changes.
Upvotes: 2