Files
Puechberty Arthur 2de4261631 first commit
2026-03-30 23:26:19 +02:00

14 lines
262 B
TypeScript

import type { MetadataRoute } from "next";
export default function robots(): MetadataRoute.Robots {
return {
rules: [
{
userAgent: "*",
allow: "/",
},
],
sitemap: "https://imprimersudoku.arthurp.fr/sitemap.xml",
};
}