mirror of
https://github.com/XFox111/my-website.git
synced 2026-04-22 07:28:01 +03:00
29 lines
624 B
TypeScript
29 lines
624 B
TypeScript
import { MetadataRoute } from "next";
|
|
import { unstable_noStore } from "next/cache";
|
|
import { canonicalName } from "./_data/metadata";
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap
|
|
{
|
|
unstable_noStore();
|
|
return [
|
|
{
|
|
url: canonicalName.href,
|
|
lastModified: new Date(),
|
|
changeFrequency: "monthly",
|
|
priority: 1
|
|
},
|
|
{
|
|
url: new URL("/resume", canonicalName.href).href,
|
|
lastModified: new Date(),
|
|
changeFrequency: "monthly",
|
|
priority: 0.2
|
|
},
|
|
{
|
|
url: new URL("/attribution", canonicalName.href).href,
|
|
lastModified: new Date(),
|
|
changeFrequency: "monthly",
|
|
priority: 0
|
|
}
|
|
];
|
|
}
|