Skip to content

Commit

Permalink
fix(gatsby-plugin-netlify): Add an allow list for redirect options (#…
Browse files Browse the repository at this point in the history
…30155) (#30215)

(cherry picked from commit 962c4a1)

Co-authored-by: Sidhartha Chatterjee <me@sidharthachatterjee.com>
  • Loading branch information
GatsbyJS Bot and sidharthachatterjee committed Mar 18, 2021
1 parent c536730 commit ebbb41b
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions packages/gatsby-plugin-netlify/src/create-redirects.js
Expand Up @@ -12,8 +12,18 @@ export default async function writeRedirectsFile(

const FILE_PATH = publicFolder(`_redirects`)

// Map redirect data to the format Netlify expects
// https://www.netlify.com/docs/redirects/
const NETLIFY_REDIRECT_KEYWORDS_ALLOWLIST = [
`query`,
`conditions`,
`headers`,
`signed`,
`edge_handler`,
`Language`,
`Country`,
]

// Map redirect data to the format Netlify expects
redirects = redirects.map(redirect => {
const {
fromPath,
Expand Down Expand Up @@ -43,7 +53,9 @@ export default async function writeRedirectsFile(
`Values should not contain spaces.`
)
} else {
pieces.push(`${key}=${value}`)
if (NETLIFY_REDIRECT_KEYWORDS_ALLOWLIST.includes(key)) {
pieces.push(`${key}=${value}`)
}
}
}

Expand Down

0 comments on commit ebbb41b

Please sign in to comment.