1.0.0 • Published 6 years ago

gatsby-plugin-replace-path v1.0.0

Weekly downloads
71
License
MIT
Repository
github
Last release
6 years ago

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