aboutsummaryrefslogtreecommitdiffstats
path: root/next-sitemap.js
blob: c9cd4439604d6906e2f672e337e90c1180b725bc (plain)
1
2
3
4
5
6
7
8
9
/** @type {import('next-sitemap').IConfig} */

module.exports = {
  siteUrl: `${process.env.NEXT_PUBLIC_APP_PROTOCOL}://${process.env.NEXT_PUBLIC_APP_DOMAIN}`,
  generateRobotsTxt: true,
  changefreq: null,
  priority: null,
  exclude: ['/feed.xml', '/feed.json', '/atom.xml'],
};