mirror of
https://github.com/arthur-pbty/imprimersudoku.git
synced 2026-06-03 15:07:28 +02:00
14 lines
262 B
TypeScript
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",
|
|
};
|
|
}
|