Community Plugin
View plugin on GitHubgatsby-plugin-replace-path
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
v1.0.0 (2018-05-10)
- [
2ecb2577b3
] - Initial commit (Neil Kistner)
License
MIT © Neil Kistner