gatsby-theme-redirects
v0.0.6
Published
Automatically create redirects from redirects.yml
Downloads
6
Readme
gatsby-theme-redirects
gatsby-theme-redirects
allows you to specify a manifest of legacy redirects in src/data/redirects.yml
.
Installation
yarn add gatsby-theme-redirects
Usage
// gatsby-config.js
module.exports = {
return {
__experimentalThemes: [
{
resolve: 'gatsby-theme-redirects',
options: {}
}
]
}
}
# src/data/redirect.yml
- from: /foo
to: /bar
- from: /baz
to: /other