Files
Puechberty Arthur c96a23dc12 first commit
2026-03-30 20:19:05 +02:00

14 lines
254 B
TypeScript

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