I've done my research and found one or two answers explaining that I'm supposed to define my file in the assets section of angular-cli.json file. I've done it as follows.
"assets": [
"assets",
"mylogo.png",
"favicon.ico"
],
Later on, in the template I do the following.
<img src="mylogo.png">
<img src="favicon.ico">
The first one shows as a broken link whereas the second (the default Angular icon) shows just fine. I can't understand it as both reside in the same directory and both are referred to in the configuration file.
What am I missing?