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 use different way. I'm adding all .scss files during development
{% block stylesheets %}
{% stylesheets filter='?uglifycss' filter='cssrewrite' filter="compass"
"@TESTSSassBundle/Resources/public/css/_vars.scss" <-- this will be removed
"@TESTSSassBundle/Resources/public/css/main.scss"
"@TESTSSassBundle/Resources/public/css/header.scss"
"@TESTSSassBundle/Resources/public/css/footer.scss"
%}
{% endstylesheets %}
{% endblock %}
and after I finish development I remove them. This way I do not need to clear my cache and add/change any settings. It always work for me.