I\'m using Assetic with the compass filter to pass and compile .scss files. This part of the setup seems to work fine. However, my understanding was that in the app_dev environm
I have fixed this issue in local development by adding a line to the end of my parameters.yml, which basically stops any asset caching from taking place.
# parameters.yml
...
assetic.cache.class: Assetic\Cache\ArrayCache
This should never be included in a production environment as we want caching to happen!