We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6736a6d commit 0e20f01Copy full SHA for 0e20f01
packages/gatsby-plugin-netlify/src/gatsby-node.js
@@ -53,11 +53,11 @@ exports.onPostBuild = async (
53
])
54
}
55
56
-const MATH_ALL_KEYS = /^/
+const MATCH_ALL_KEYS = /^/
57
const pluginOptionsSchema = function ({ Joi }) {
58
// headers is a specific type used by Netlify: https://www.gatsbyjs.com/plugins/gatsby-plugin-netlify/#headers
59
const headersSchema = Joi.object()
60
- .pattern(MATH_ALL_KEYS, Joi.array().items(Joi.string()))
+ .pattern(MATCH_ALL_KEYS, Joi.array().items(Joi.string()))
61
.description(`Add more Netlify headers to specific pages`)
62
63
return Joi.object({
0 commit comments