We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5de8562 commit 4d4a7abCopy full SHA for 4d4a7ab
packages/gatsby-plugin-canonical-urls/src/gatsby-node.js
@@ -0,0 +1,9 @@
1
+exports.pluginOptionsSchema = ({ Joi }) =>
2
+ Joi.object({
3
+ siteUrl: Joi.string()
4
+ .required()
5
+ .description(`The full URL for the site e.g. https://www.example.com`),
6
+ stripQueryString: Joi.boolean().description(
7
+ `Enables stripQueryString to strip query strings from paths e.g. /blog?tag=foobar becomes /blog.`
8
+ ),
9
+ })
0 commit comments