This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
website/next-sitemap.js

12 lines
301 B
JavaScript

const SITE_URL =
process.env.NEXT_PUBLIC_URL || 'https://zdamegzaminzawodowy.pl';
module.exports = {
siteUrl: SITE_URL,
generateRobotsTxt: true,
exclude: ['/server-sitemap.xml', '/404', '/pl', '/500'],
robotsTxtOptions: {
additionalSitemaps: [`${SITE_URL}/server-sitemap.xml`],
},
};