Skip to content

Commit

Permalink
fix: add 'about/' route to sitemap generation
Browse files Browse the repository at this point in the history
  • Loading branch information
geekskai committed Sep 16, 2024
1 parent ba4b88c commit 073579f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/sitemap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function sitemap(): MetadataRoute.Sitemap {
lastModified: post.lastmod || post.date,
}))

const routes = ['', 'blog/', 'projects/', 'tags/'].map((route) => ({
const routes = ['', 'blog/', 'projects/', 'tags/', 'about/'].map((route) => ({
url: `${siteUrl}/${route}`,
lastModified: new Date().toISOString().split('T')[0],
}))
Expand Down

0 comments on commit 073579f

Please sign in to comment.