0.0.6 • Published 5 years ago

gatsby-theme-redirects v0.0.6

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

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