I have the following content in menu.html.twig
template.
<ul> <li><a href="/">Blog</a></li> <li><a href="/photos">Bilder</a></li> <li><a href="/contact">Kontakt</a></li> </ul>
If I change the content of the menu.html.twig
does not reflect in the site. If I have logged into the backend I can see the changes otherwise it does not apply the changes until I clear the cache.
I have disabled the Twig cache in development.services.yml
file and made appropriate changes in settings.local.yml
and uncomment the line which enables settings.local.yml
in the settings.yml
parameters: http.response.debug_cacheability_headers: true twig.config: debug: true auto_reload: true cache: false services: cache.backend.null: class: DrupalCoreCacheNullBackendFactory
Can anyone here know what is wrong here?