I'm looking for including .css ans .js files using Assetic with Symfony. The issue is the browser fails to load these files.
{% block stylesheets %}
{% stylesheets '@MUSCoreBundle/Resources/public/css/*' filter='cssrewrite' %}
<link rel="stylesheet" href="{{ asset_url }}"/>
{% endstylesheets %}
{% endblock %}
{% block javascripts %}
{% javascripts '@MUSCoreBundle/Resources/public/js/*' %}
<script type="text/javascript" src="{{ asset_url }}"></script>
{% endjavascripts %}
{% endblock %}


I wrote the good path to my files.
What am i doing wrong ?
The solution : you have to create the .css and .js files inside the folder CSS. It seems the server can't acess these files if you had copied and pasted them from an other location.
@before your path:@MUSCoreBundle/Resources/public/font-awesome/css/font-awesome.min.cssAn exception has been thrown during the compilation of a template ("Unable to find file "@MUSCoreBundle/Resources/public/font-awesome/css/font-awesome.min.css".") in "::layout.html.twig".