TWIG{% javascript %}
タグを使用して.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
どうすればこれを修正できますか?