Когда я пытаюсь использовать {% javascript %}
тег TWIG для ссылки на мой .js
файл, он возвращает меня со следующим исключением:
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".
Мой index.html.twig
выглядит так:
{% javascripts 'CompetitiongameBundle/Resources/views/public/js/*'%}
<script type="text/javascript" src="{{ asset_url }}" ></script>
{% endjavascripts %}
Hello {{ name }}!
<a href='{{ nexturl }}' >Login</a>
Мой пакет уже присутствует в файле конфигурации, когда я делаю следующее:
php app/console config:dump-reference assetic
Как я могу это исправить ?