I'm using kriswallsmith assetic bundle to serve css with compass filter, in dev environment is generated each time and in prod environment styles are served with the dumped css files with no compass action. So I'm wondering if there is a way in dev env to serve the same css files than prod env if smyfony is not be able to find compass binary.
Here is how I load the sass files in my head:
{% stylesheets filter="compass"
"@Bundle/Resources/public/css/colors.sass"
"@Bundle/Resources/public/css/layout.sass"
"@Bundle/Resources/public/css/menu.sass"
"@Bundle/Resources/public/css/main.sass"
"@Bundle/Resources/public/css/fonts.sass"
%}
<link rel="stylesheet" href="{{ asset_url }}" />
{% endstylesheets %}
Is there a workaround for this?