Hi!
When I run my ionic (vue) app in the browser (ionic serve) everything is ok, but when I run my app on an android device - there is no image.
I have put images in a few places:
/public/assets/image.png ; /public/assets/img/image.png; /src/assets/image.png; /src/assets/img/image.png
And try to display it as:
src=“…/…/public/assets/image.png”
src=“./…/public/assets/img/image.png”
src=“assets/image.png”
src=“…/assets/image.png”
Nothing help
Also, I even can not display images from the URL address.
However, on web all is working fine
Here is my code structure