vaishu ani
vaishu ani

Reputation: 117

Images Not displayed on Mobile device

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

Answers (1)

mohamad rabee
mohamad rabee

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

Related Questions