mirror of
https://github.com/community-scripts/ProxmoxVE
synced 2025-02-08 16:59:17 +00:00
14 lines
291 B
TypeScript
14 lines
291 B
TypeScript
|
import type { MetadataRoute } from "next";
|
||
|
|
||
|
export const dynamic = "force-static";
|
||
|
|
||
|
export default function robots(): MetadataRoute.Robots {
|
||
|
return {
|
||
|
rules: {
|
||
|
userAgent: "*",
|
||
|
allow: "/",
|
||
|
},
|
||
|
sitemap: "https://community-scripts.github.io/Proxmox/sitemap.xml",
|
||
|
};
|
||
|
}
|