I am trying show images in a Blazor view, but it's not working and shows only an image icon:
<img src="~/Images/watch.jpg" asp-append-version="true" width="300px" />
Here my image resides in this path wwwroot/Images/watch.jpg
Try this:
<img src="/Images/watch.jpg" asp-append-version="true" width="300px" />