Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

images not showing in angular project

Tags:

image

angular

I have added images to assets folder and then add this like <img src="../../../assets/graphic.png" alt="">

on ctrl+click this path it shows that error also it doesn't show on app running on browser.

like image 893
sheetal dadhich Avatar asked Sep 11 '25 07:09

sheetal dadhich


2 Answers

You may need to make a change to the angular.json file:

"assets": [
  "src/assets",
  "src/favicon.ico"
],
like image 142
Mohammad Hosseini Parto Avatar answered Sep 13 '25 22:09

Mohammad Hosseini Parto


did you try

<img src="assets/graphic.png" alt=""> 
like image 24
Hassen Fadhlaoui Avatar answered Sep 13 '25 23:09

Hassen Fadhlaoui