I am facing an issue where the style sheet does not apply on my initial JSF page. The problem occurs when I have an index.jsp which forwards to my first JSF page.
<html>
<head></head>
<body>
<jsp:forward page="./start.jsf" />
</body>
</html>
When I land on start.jsf, the style sheet does not apply. However, once I navigate to a second page, the style sheet works perfectly fine.
This same behavior was observed on the second page, which used to be the first page before this issue arose. Interestingly, without any changes, the second page displays the style sheet correctly as long as it is not the first one in line.
Considering that CSS and the page structure are correct, I suspect there might be a configuration error causing this discrepancy.
Do you have any ideas on how to resolve this?