I am using IONIC 3.20.1 and I am facing the issue, assets images are not rendering on the browser or device as well.
The folder structure is the same while creating the sample project inside the src folder then assets then imgs.
but images are not loading on the browser after the ionic serve. I tried all the paths like below.
<img float-right src="../assets/imgs/user.png" />
<img float-right src="../../assets/imgs/user.png" />
<img float-right src="/assets/imgs/user.png" />
<img float-right src="./assets/imgs/user.png" />
<img float-right src="assets/imgs/user.png" />
but nothing is working. Please help me out here.