जब मैं {% javascript %}
अपनी .js
फ़ाइल से लिंक करने के लिए TWIG टैग का उपयोग करने की कोशिश कर रहा हूं तो यह मुझे निम्न अपवाद के साथ लौटाएगा:
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
मैं इसे कैसे ठीक करूं ?