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:
parent
9abea5b55f
commit
50d6d6d44e
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue