1
0
mirror of https://github.com/kremalicious/gatsby-redirect-from.git synced 2024-06-26 03:06:40 +02:00
This commit is contained in:
Matthias Kretschmann 2020-02-20 09:11:22 +01:00 committed by GitHub
commit e695b23899
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,17 +45,28 @@ export function createPages({ graphql, actions }, pluginOptions) {
}) })
}) })
const createRedirectTemplate = (from, to) => {
createRedirect({
fromPath: from,
toPath: to,
isPermanent: true,
redirectInBrowser: true
})
}
// Create redirects from the just constructed array // Create redirects from the just constructed array
redirects.forEach(({ from, to }) => { redirects.forEach(({ from, to }) => {
// iterate through all `from` array items // `from` is a string when only a single value is set
from.forEach(from => { if (typeof 'string' === from) {
createRedirect({ createRedirectTemplate(from, to)
fromPath: from, }
toPath: to, // otherwise `from` is a list array
isPermanent: true, else {
redirectInBrowser: true // iterate through all `from` array items
from.forEach(from => {
createRedirectTemplate(from, to)
}) })
}) }
}) })
resolve( resolve(