-
Notifications
You must be signed in to change notification settings - Fork 165
Open
Description
When manifestMaskable is set, all maskable icons are generated. They should be configurable like all of the other icons are.
favicons/src/platforms/android.ts
Lines 108 to 124 in 7b0e340
// Generate android maskable images from a different source set | |
if ( | |
this.options.manifestMaskable && | |
typeof this.options.manifestMaskable !== "boolean" | |
) { | |
const maskableSourceset = await sourceImages( | |
this.options.manifestMaskable, | |
); | |
const maskableIcons = await Promise.all( | |
ICONS_OPTIONS_MASKABLE.map((iconOption) => | |
createFavicon(maskableSourceset, iconOption.name, iconOption), | |
), | |
); | |
icons = [...icons, ...maskableIcons]; | |
} |
Metadata
Metadata
Assignees
Labels
No labels