Wenn ich versuche, das TWIG- {% javascript %}
Tag zum Verknüpfen mit meiner .js
Datei zu verwenden, wird mir die folgende Ausnahme zurückgegeben:
An exception has been thrown during the compilation of a template ("You must add CompetitiongameBundle to the assetic.bundle config to use the {% javascripts %} tag in CompetitiongameBundle:game:index.html.twig.") in "CompetitiongameBundle:game:index.html.twig".
Mein index.html.twig
sieht aus wie:
{% javascripts 'CompetitiongameBundle/Resources/views/public/js/*'%}
<script type="text/javascript" src="{{ asset_url }}" ></script>
{% endjavascripts %}
Hello {{ name }}!
<a href='{{ nexturl }}' >Login</a>
Mein Bundle ist bereits in der Konfigurationsdatei vorhanden, wenn ich Folgendes tue:
php app/console config:dump-reference assetic
Wie kann ich das beheben?