Angular 4 img src is not found

Solution 1:

AngularJS

<img ng-src="{{imagePath}}">

Angular

<img [src]="imagePath">

Solution 2:

Copy your images into the assets folder. Angular can only access static files like images and config files from assets folder.

Try like this: <img src="assets/img/myimage.png">