0

I have a twig template as simple as:

{# Digital Assets #}
<li class="digAssets" {{ ('digital_assets' == category) ? 'current' }}">
    <a href="{{ path('digital_assets') }}">Digital Assets</a>
</li>

But when I try to change something as simple as

<a href="{{ path('digital_assets') }}">Digital Assets</a>

to

<a href="{{ path('digital_assets') }}">Analog Assets</a>

it does not update. I've tried putting

cache: false
auto_reload: true

into both app/config/config.yml, config_dev.yml, and config_prod.yml with no success.

ConorBaumgart
  • 493
  • 1
  • 3
  • 18