mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2025-09-21 10:19:59 +00:00
21 lines
483 B
TypeScript
21 lines
483 B
TypeScript
import type { MetadataRoute } from "next";
|
|
|
|
export const dynamic = "force-static";
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
|
return [
|
|
{
|
|
url: "https://community-scripts.github.io/Proxmox/",
|
|
lastModified: new Date(),
|
|
changeFrequency: "yearly",
|
|
priority: 0.8,
|
|
},
|
|
{
|
|
url: "https://community-scripts.github.io/Proxmox/scripts",
|
|
lastModified: new Date(),
|
|
changeFrequency: "monthly",
|
|
priority: 1,
|
|
},
|
|
];
|
|
}
|