Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

gatsby-plugin-replace-path

Build Status npm Codecov.io

A Gatsby plugin to replace page paths.

Installation

Yarn

$ yarn add --dev gatsby-plugin-replace-path

npm

$ npm install --save-dev gatsby-plugin-replace-path

Usage

// gatsby-config.js

module.exports = {
  // ...
  plugins: [
    {
      resolve: 'gatsby-plugin-replace-path',
      options: {
        pattern: /(e)/g,
        replacement: ( _, match ) => match.toUpperCase(),
      },
    },
  ]
}

Change Log

Full Change Log

v1.0.0 (2018-05-10)

License

MIT © Neil Kistner

© 2023 Gatsby, Inc.