mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-23 04:26:57 +00:00
13 lines
248 B
TypeScript
13 lines
248 B
TypeScript
import { MetadataRoute } from "next";
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: {
|
|
userAgent: "*",
|
|
allow: "/",
|
|
disallow: "/api/",
|
|
},
|
|
sitemap: "https://echecsfrance/sitemap.xml",
|
|
};
|
|
}
|