Skip to content

Commit de049a6

Browse files
authoredSep 16, 2020
docs(gatsby-plugin-manifest): Allow icons to be used without a mask on other devices (#24490)
1 parent faf4aea commit de049a6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎packages/gatsby-plugin-manifest/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ This plugin provides several features beyond manifest configuration to make your
1313

1414
Each of these features has extensive configuration available so you are always in control.
1515

16+
This guide focuses on configuring the plugin. For more information on the web app manifest, check out the additional resources below.
17+
1618
## Install
1719

1820
```shell
@@ -200,10 +202,8 @@ module.exports = {
200202
display: `standalone`,
201203
icon: `src/images/icon.png`,
202204
icon_options: {
203-
// For all the options available, please see:
204-
// https://developer.mozilla.org/en-US/docs/Web/Manifest
205-
// https://w3c.github.io/manifest/#purpose-member
206-
purpose: `maskable`,
205+
// For all the options available, please see the additional resources below.
206+
purpose: `any maskable`,
207207
},
208208
},
209209
},
@@ -444,7 +444,7 @@ Internet Explorer is the only other major browser that doesn't support the web a
444444
This article from the Chrome DevRel team is a good intro to the web app
445445
manifest — https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
446446

447-
For more information see the [W3C specification](https://www.w3.org/TR/appmanifest/) or [Mozilla documentation](https://developer.mozilla.org/en-US/docs/Web/Manifest).
447+
For more information, see the [W3C specification](https://www.w3.org/TR/appmanifest/), [Mozilla documentation](https://developer.mozilla.org/en-US/docs/Web/Manifest) or [Web.Dev guide](https://web.dev/add-manifest/).
448448

449449
## Troubleshooting
450450

0 commit comments

Comments
 (0)
Please sign in to comment.