An image.ico in a navbar brand in my EJS template doesn't work. I read 404 (Not Found) on browser console. I'm sure that relative path is correct. I also checked image permission and they are ok and I tried to to change image position, ( moving in other directory) but it continue not showing.
Inserting logo in a navbar seems a very easy operation. What have I forgotten?
Following code is my navbar.
Thanks
<nav class="navbar navbar-expand-md">
<a class="navbar-brand" >
<img src="../../static/images/icona.ico" alt="ico" style="width:40px;">
</a>
<a class="navbar-brand" > Title </a>
</nav>