Skip to content

Instantly share code, notes, and snippets.

@fernandes99
Last active February 11, 2024 18:58
Show Gist options
  • Save fernandes99/061dd2238ddef4246716e85e730d5853 to your computer and use it in GitHub Desktop.
Save fernandes99/061dd2238ddef4246716e85e730d5853 to your computer and use it in GitHub Desktop.
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
},
{
url: `https://www.meudominio.com.br/blog`,
lastModified: new Date(),
changeFrequency: 'monthly',
priority: 0.5
}
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment