Skip to content

Commit fa262d0

Browse files
authored
prettier
1 parent f6762c3 commit fa262d0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/sitemap.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ import siteMetadata from '@/data/siteMetadata'
55
export default function sitemap(): MetadataRoute.Sitemap {
66
const siteUrl = siteMetadata.siteUrl
77

8-
const blogRoutes = allBlogs.filter((post) => !post.draft)
8+
const blogRoutes = allBlogs
9+
.filter((post) => !post.draft)
910
.map((post) => ({
1011
url: `${siteUrl}/${post.path}`,
1112
lastModified: post.lastmod || post.date,

0 commit comments

Comments
 (0)