Files
ProxMenux/web/app/robots.ts

17 lines
322 B
TypeScript
Raw Permalink Normal View History

import type { MetadataRoute } from "next"
export const dynamic = "force-static"
export default function robots(): MetadataRoute.Robots {
return {
rules: [
{
userAgent: "*",
allow: "/",
},
],
sitemap: "https://proxmenux.com/sitemap.xml",
host: "https://proxmenux.com",
}
}