gatsby-plugin-replace-paths
v1.0.1
Published
A Gatsby plugin to replace page paths.
Downloads
3
Readme
gatsby-plugin-replace-paths
A Gatsby plugin to replace page paths.
Installation
Yarn
$ yarn add --dev gatsby-plugin-replace-paths
npm
$ npm install --save-dev gatsby-plugin-replace-paths
Usage
// gatsby-config.js
module.exports = {
// ...
plugins: [
{
resolve: "gatsby-plugin-replace-paths",
options: {
config: [
{
pattern: "/about",
replacement: "/a-propos",
},
{
pattern: /(e)/g,
replacement: (_, match) => match.toUpperCase(),
},
],
},
},
],
};
License
MIT © Maxime Blanc Fork of Neil Kistner