next-sitemap.config.js 299 B

12345678910111213141516171819
  1. // @ts-check
  2. /** @type {import('next-sitemap').IConfig} */
  3. module.exports = {
  4. siteUrl: process.env.SITE_URL || 'https://angeloanan.xyz',
  5. generateRobotsTxt: true,
  6. sitemapSize: 7000,
  7. robotsTxtOptions: {
  8. policies: [
  9. {
  10. userAgent: '*',
  11. allow: '/'
  12. }
  13. ]
  14. }
  15. }