简体   繁体   中英

Assetic: how to include javascript file only for dev environment?

I want to add Javascript file that should be loaded in dev environment only, not in prod.

{% javascripts '@AppBundle/Resources/public/js/*' %}
<script src="{{ asset_url }}"></script>
{% endjavascripts %}

How can I modify this example to disable it's loading in prod?

Use {{ app.environment }}

Try this :

{% if app.environment == 'dev' %}
    {% javascripts '@AppBundle/Resources/public/js/*' %}
    <script src="{{ asset_url }}"></script>
    {% endjavascripts %}
{% endif %}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM