PWA: Fix app manifest logo icon sizes (#3838)

Logo icon 77.png does not exists so a warning is shown on Chrome Dev Tools when inspecting the PWA manifest
This commit is contained in:
Carlos Abraham Pérez Marrero 2023-10-23 05:29:39 -04:00 committed by GitHub
parent 9abea5b55f
commit 50d6d6d44e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,7 +16,7 @@ type Icon struct {
}
// IconSizes represents standard app icon sizes.
var IconSizes = []int{16, 32, 77, 114, 128, 144, 152, 160, 167, 180, 192, 196, 256, 400, 512}
var IconSizes = []int{16, 32, 76, 114, 128, 144, 152, 160, 167, 180, 192, 196, 256, 400, 512}
// NewIcons creates new app icons in the default sizes based on the parameters provided.
func NewIcons(staticUri, appIcon string) Icons {