After some investigation, I discovered that the index page is actually named index.server.view.html. However, the file only consists of the following code:
{% extends 'layout.server.view.html' %}
{% block content %}
<section data-ui-view></section>
{% endblock %}
I'm interested in showcasing one of my Angular module views as my index page, utilizing the relevant Angular controllers and services.
Does anyone have any suggestions or ideas on how to achieve this?