Skip to content

Instantly share code, notes, and snippets.

@marnocha
Created February 21, 2023 19:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marnocha/1fc4bc409540779c0adf6500eb68c54b to your computer and use it in GitHub Desktop.
Save marnocha/1fc4bc409540779c0adf6500eb68c54b to your computer and use it in GitHub Desktop.
Configuration of my next-sitemap for my website
const siteUrl = "https://www.marnochastudios.com"
module.exports = {
siteUrl,
generateRobotsTxt: true,
robotsTxtOptions: {
policies: [
{ userAgent: "*", allow: "/" },
],
additionalSitemaps: [`${siteUrl}/server-sitemap.xml`]
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment