Files
telenetsystems-2026-02-06-v1/app/robots.ts
T

12 lines
235 B
TypeScript

import type { MetadataRoute } from "next";
export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: "*",
allow: "/"
},
sitemap: "https://www.telenetsystems.at/sitemap.xml"
};
}