funktechnik-schubert-website/app/robots.ts
2026-07-03 19:14:34 +02:00

12 lines
270 B
TypeScript

import type { MetadataRoute } from "next";
import { siteUrl } from "./seo";
export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: "*",
allow: "/",
},
sitemap: new URL("/sitemap.xml", siteUrl).toString(),
};
}