I am struggling to attach an image to the image tag in Angular 2.
My application has the following structure:
https://i.sstatic.net/svBE1.png
In the choice.Component.html view, I want to display the UserDefaultImage.png image within an image tag.
I have tried various paths like below, but none have worked:
<img src="../images/DefaultUserImage.png" />
<img src="./images/DefaultUserImage.png" />
<img src="/images/DefaultUserImage.png" />
<img src="app/images/DefaultUserImage.png" />
<img src="/app/images/DefaultUserImage.png" />
What path do I need to use to make it work?