/ next-sitemap.js
next-sitemap.js
 1  const excludedPaths = ["/checkout", "/account/*"]
 2  
 3  module.exports = {
 4    siteUrl: process.env.NEXT_PUBLIC_VERCEL_URL,
 5    generateRobotsTxt: true,
 6    exclude: excludedPaths + ["/[sitemap]"],
 7    robotsTxtOptions: {
 8      policies: [
 9        {
10          userAgent: "*",
11          allow: "/",
12        },
13        {
14          userAgent: "*",
15          disallow: excludedPaths,
16        },
17      ],
18    },
19  }