{
resolve: `gatsby-plugin-page-creator`,
options: {
path: `${__dirname}/src/pages/places/`,
slugify: { customReplacements: [['.', '..']] },
},
},
This is my plugin in gatsby-config. I am trying to preserve the dots that are in the url of the pages i created, but somehow the custom replacements option does not work. Does anybody know how to solve this problem ?