mirror of
https://github.com/arthur-pbty/imprimersudoku.git
synced 2026-06-03 15:07:28 +02:00
13 lines
267 B
TypeScript
13 lines
267 B
TypeScript
import type { MetadataRoute } from "next";
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
|
return [
|
|
{
|
|
url: "https://imprimersudoku.arthurp.fr",
|
|
lastModified: new Date(),
|
|
changeFrequency: "monthly",
|
|
priority: 1,
|
|
},
|
|
];
|
|
}
|