Cuando intento usar la {% javascript %}
etiqueta TWIG para vincular a mi .js
archivo, me devuelve con la siguiente excepción:
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".
Mi index.html.twig
apariencia es:
{% javascripts 'CompetitiongameBundle/Resources/views/public/js/*'%}
<script type="text/javascript" src="{{ asset_url }}" ></script>
{% endjavascripts %}
Hello {{ name }}!
<a href='{{ nexturl }}' >Login</a>
Mi paquete ya está presente en el archivo de configuración cuando lo hago:
php app/console config:dump-reference assetic
Cómo puedo arreglar esto ?