medusa-nextjs-storefront/next-sitemap.js

20 lines
374 B
JavaScript
Raw Permalink Normal View History

2024-02-27 19:43:12 +01:00
const excludedPaths = ["/checkout", "/account/*"]
module.exports = {
siteUrl: process.env.NEXT_PUBLIC_VERCEL_URL,
generateRobotsTxt: true,
exclude: excludedPaths + ["/[sitemap]"],
robotsTxtOptions: {
policies: [
{
userAgent: "*",
allow: "/",
},
{
userAgent: "*",
disallow: excludedPaths,
},
],
},
}