2022-12-06 09:49:29 +00:00
|
|
|
/** @type {import('next-sitemap').IConfig} */
|
2024-10-11 10:32:52 +00:00
|
|
|
export default {
|
2022-12-06 09:49:29 +00:00
|
|
|
siteUrl: process.env.SITE_URL || 'https://graphql-hive.com',
|
|
|
|
|
generateIndexSitemap: false,
|
2024-11-19 12:05:36 +00:00
|
|
|
additionalPaths: config => [
|
|
|
|
|
{
|
|
|
|
|
loc: config.siteUrl.replace(/\/$/, '') + '/federation-gateway-audit',
|
|
|
|
|
lastmod: new Date().toISOString(),
|
|
|
|
|
changefreq: 'weekly',
|
|
|
|
|
priority: 0.7,
|
|
|
|
|
},
|
2025-09-02 09:30:33 +00:00
|
|
|
{
|
|
|
|
|
loc: config.siteUrl.replace(/\/$/, '') + '/federation-gateway-performance',
|
|
|
|
|
lastmod: new Date().toISOString(),
|
|
|
|
|
changefreq: 'weekly',
|
|
|
|
|
priority: 0.7,
|
|
|
|
|
},
|
2024-11-19 12:05:36 +00:00
|
|
|
],
|
2024-04-07 07:52:05 +00:00
|
|
|
output: 'export',
|
2022-12-06 09:49:29 +00:00
|
|
|
};
|