Remove /404 & /[...slug] from sitemap

This commit is contained in:
Dávid Lévai 2021-06-20 11:38:37 +02:00 committed by GitHub
parent 70ac88bac8
commit c741e0894c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,6 +28,9 @@ const siteMetadata = require('../data/siteMetadata')
.replace('.md', '')
.replace('/index.xml', '')
const route = path === '/index' ? '' : path
if (page === `pages/404.js` || page === `pages/[...slug].js`) {
return
}
return `
<url>
<loc>${`${siteMetadata.siteUrl}${route}`}</loc>