Reputation: 117
I am using ionic 2.
Images display on Browser But not showing on device.
Why?
I tried this
<img src="assets/images/deals/thumbs/bust.png" alt="Product 1">
<img src="../assets/images/deals/thumbs/bust.png" alt="Product 1">
But It's not working.
KIndly advice me,
Thanks
Upvotes: 1
Views: 447
Reputation: 587
I have also this issue and solve by move the assets folder under src folder and use.
<img src="assets/images/deals/thumbs/bust.png" alt="Product 1">
not
<img src="../assets/images/deals/thumbs/bust.png" alt="Product 1">
Upvotes: 1