We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 083b2e8 commit 990a959Copy full SHA for 990a959
packages/gatsby-theme-iterative/gatsby-config.js
@@ -171,10 +171,6 @@ module.exports = ({
171
}
172
],
173
siteMetadata: {
174
- author: '',
175
- siteUrl: '',
176
- titleTemplate: '',
177
- plausibleSrc: 'https://plausible.io/js/plausible.outbound-links.js',
178
- plausibleDomain: ''
+ plausibleSrc: 'https://plausible.io/js/plausible.outbound-links.js'
179
180
})
packages/gatsby-theme-iterative/gatsby-node.js
@@ -57,6 +57,16 @@ exports.createSchemaCustomization = async api => {
57
name: 'String!',
58
match: '[String]'
59
60
+ }),
61
+ buildObjectType({
62
+ name: 'SiteSiteMetadata',
63
+ fields: {
64
+ author: 'String',
65
+ siteUrl: 'String',
66
+ titleTemplate: 'String',
67
+ plausibleSrc: 'String',
68
+ plausibleDomain: 'String'
69
+ }
70
71
])
72
0 commit comments