Quando provo a utilizzare il {% javascript %}
tag TWIG per collegarmi al mio .js
file, mi viene restituito con la seguente eccezione:
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".
Il mio index.html.twig
aspetto è:
{% javascripts 'CompetitiongameBundle/Resources/views/public/js/*'%}
<script type="text/javascript" src="{{ asset_url }}" ></script>
{% endjavascripts %}
Hello {{ name }}!
<a href='{{ nexturl }}' >Login</a>
Il mio Bundle è già presente nel file di configurazione quando faccio:
php app/console config:dump-reference assetic
Come posso risolvere questo problema?