I want to hide Home from navigation, and found this old issue which got me on track: Hide `Home` from navigation.
I managed to hide it by adding {% if not page.home %} in navigation.html.twig like this:
{% if not page.home %}
<li class="{{ current_page }}">
<a href="{{ page.url }}">
{% if page.header.icon %}<i class="fa fa-{{ page.header.icon }}"></i>{% endif %}
{{ page.menu }}
</a>
</li>
{% endif %}
This removes the “Home” link from all pages.
I still wonder where to add visibility: false as an alternative solution … modular.md for 01.home is set to onpage_menu: false, but it doesn’t seem to have any effect.