Files
sass-mohfarawati/app/robots.ts
T
2026-03-07 18:48:01 +01:00

13 lines
209 B
TypeScript

import type { MetadataRoute } from "next";
export default function robots(): MetadataRoute.Robots {
return {
rules: [
{
userAgent: "*",
disallow: ["/root"],
},
],
};
}