blob: 9f7346d507a12e317185564d18c5a1dae4718777 (
plain)
| 1
2
3
4
5
6
7
8
9
 | /** @type {import('next-sitemap').IConfig} */
module.exports = {
  siteUrl: process.env.NEXT_PUBLIC_FRONTEND_URL,
  generateRobotsTxt: true,
  changefreq: null,
  priority: null,
  exclude: ['/feed.xml', '/feed.json', '/atom.xml'],
};
 |