Files
sass-mohfarawati/app/robots.ts
T
MOH 87a597c872
CI / quality (push) Waiting to run
Move admin area to root subdomain
2026-03-12 00:15:12 +01:00

16 lines
359 B
TypeScript

import type { MetadataRoute } from "next";
export default function robots(): MetadataRoute.Robots {
const siteUrl = new URL(process.env.NEXT_PUBLIC_SITE_URL ?? "https://mohfarawati.de");
return {
rules: [
{
userAgent: "*",
disallow: ["/_admin"],
},
],
sitemap: new URL("/sitemap.xml", siteUrl).toString(),
};
}