Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions packages/gatsby-plugin-netlify/src/create-redirects.js
Original file line number Diff line number Diff line change
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