You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/gatsby-plugin-manifest/README.md
+4-2
Original file line number
Diff line number
Diff line change
@@ -190,7 +190,9 @@ module.exports = {
190
190
191
191
## Custom icon options
192
192
193
-
In order to specify manifest options merged with each item of the `icons` array, `icon_options` may be used as follows:
193
+
The `icon_options` object may be used to iteratively add configuration items to the `icons` array. Any options included in this object will be merged with each object of the `icons` array (custom or default). Key value pairs already in the `icons` array will take precedence over duplicate items in the `icon_options` array.
194
+
195
+
`icon_options` may be used as follows:
194
196
195
197
```js
196
198
// in gatsby-config.js
@@ -205,7 +207,7 @@ module.exports = {
205
207
background_color:`#f7f0eb`,
206
208
theme_color:`#a2466c`,
207
209
display:`standalone`,
208
-
icon:`src/images/icon.png`,// This path is relative to the root of the site.
0 commit comments