13 lines
259 B
TypeScript
13 lines
259 B
TypeScript
import type { MetadataRoute } from "next";
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: {
|
|
userAgent: "*",
|
|
allow: "/",
|
|
disallow: ["/api/"],
|
|
},
|
|
sitemap: "https://soccer-2026.info/sitemap.xml",
|
|
};
|
|
}
|