Image file in www folder not loading in android ionic project

i try to load an image file in img element, but the reference is wrong and the image is not loaded. The HTML code looks like this where we are including an img:

<img src="../mock/img1.jpg">

mock folder is located in www folder and being bundled into the app.

and i try to use file://mock/item3.jpg it still doesn’t work.

how to show image in www folder?

No need to add “…” in img src path.

set image src= “/mock/img1.jpg” or src=“mock/img1.jpg”.