Skip to content

Instantly share code, notes, and snippets.

View fernandes99's full-sized avatar
🎯
Focusing

Roberto Fernandes fernandes99

🎯
Focusing
View GitHub Profile
@fernandes99
fernandes99 / sitemap.ts
Last active February 11, 2024 18:58
Sitemap using NextJs 13+
import { MetadataRoute } from 'next';
export default function sitemap(): MetadataRoute.Sitemap {
return [
{
url: '<https://www.meudominio.com.br/>',
lastModified: new Date(),
changeFrequency: 'monthly',
priority: 1
},