-1

I've created a PWA and it's hosted on Firebase hosting. After clicking app-name-axdax.firebaseapp.com and logging in it gives the option to add app to home screen. However, it's using Angular's icon and not my icon. How do I change this so that when it's added to the home screen it's only using my app's icon? I don't see a setting in hosting?

I've browsed and searched the firebase hosting module to no avail. I've also searched in Stack and I don't see where I can change the icon. I did not see any documentation on Ionic's site either.

D.Hodges
  • 1,794
  • 4
  • 24
  • 47

1 Answers1

0

You can find the icons defined in the src\manifest.webmanifest file. If you don't have that file you may want to add it using Angular schematics

ng add @angular/pwa

Progressive Web Apps in Angular from the Ionic team is good resource for Ionic PWA info.

Rich Tillis
  • 1,511
  • 13
  • 11