How to set Ionic favicon now?

I still can’t get this to work with ionic serve

Seems like we have had problems with path being resolved correctly. (server vs apk).
Absolute path vs relative?

My HTML page
<link rel="icon" type="image/png" href="data:image/png;base64,iVBORw.....">

See: Change default Icon in Chrome

ionic serve seems to be serving the ionic icon only.

ionic build
http-server www

this way you can test the icon.

Please add below line in your index.html

<link rel="icon" type="image/png" href="assets/icon/favicon.png" />

it’s work for me