Skip to content

Commit

Permalink
Attempt to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
noobnooc committed Apr 29, 2024
1 parent c611be8 commit 100ee52
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 @@ -30,7 +30,7 @@ export default async function sitemap(): Promise<MetadataRoute.Sitemap> {

const postUrls = posts.map((post) => {
return {
url: new URL(post.seoLink, dictionaries[0].meta.baseUrl).href,
url: new URL(post.permalink, dictionaries[0].meta.baseUrl).href,
lastModified: post.updated || post.date,
changeFrequency: "daily" as const,
priority: 1,
Expand Down

0 comments on commit 100ee52

Please sign in to comment.