We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 572109d commit 3dbf64dCopy full SHA for 3dbf64d
packages/gatsby-plugin-sitemap/src/internals.js
@@ -59,7 +59,7 @@ export const defaultOptions = {
59
serialize: ({ site, allSitePage }) =>
60
allSitePage.edges.map(edge => {
61
return {
62
- url: site.siteMetadata.siteUrl + edge.node.path,
+ url: site.siteMetadata.siteUrl + edge.node.path.toLowerCase(),
63
changefreq: `daily`,
64
priority: 0.7,
65
}
0 commit comments