Skip to content

Commit c326b15

Browse files
committed
sitemap url format updated
1 parent c207938 commit c326b15

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/sitemap.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ const { baseUrl } = config
77
export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
88
const staticRoutes = [
99
{
10-
url: `${baseUrl}/`,
10+
url: baseUrl + `/`,
1111
lastModified: new Date(),
1212
changeFrequency: "daily" as const,
1313
priority: 1,
1414
},
1515
{
16-
url: `${baseUrl}/contact/`,
16+
url: baseUrl + `/contact/`,
1717
lastModified: new Date(),
1818
changeFrequency: "weekly" as const,
1919
priority: 0.8,

0 commit comments

Comments
 (0)