mirror of
https://github.com/arthur-pbty/moon.git
synced 2026-06-03 15:07:31 +02:00
15 lines
284 B
TypeScript
15 lines
284 B
TypeScript
import type { MetadataRoute } from 'next';
|
|
|
|
const SITE_URL = 'https://moon.arthurp.fr';
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
|
return [
|
|
{
|
|
url: SITE_URL,
|
|
lastModified: new Date(),
|
|
changeFrequency: 'weekly',
|
|
priority: 1,
|
|
},
|
|
];
|
|
}
|