mirror of
https://github.com/Dokploy/website
synced 2025-06-26 18:16:01 +00:00
13 lines
234 B
TypeScript
13 lines
234 B
TypeScript
import type { MetadataRoute } from "next";
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
|
return [
|
|
{
|
|
url: "https://dokploy.com",
|
|
lastModified: new Date(),
|
|
changeFrequency: "yearly",
|
|
priority: 1,
|
|
},
|
|
];
|
|
}
|