Saman Mohamadi
Saman Mohamadi

Reputation: 4662

Symfony assetic css file changes doesn't apear

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

Answers (1)

Alessandro Lai
Alessandro Lai

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

Related Questions