mirror of
https://github.com/graphql-hive/console
synced 2026-05-21 08:08:52 +00:00
14 lines
395 B
JavaScript
14 lines
395 B
JavaScript
/** @type {import('next-sitemap').IConfig} */
|
|
export default {
|
|
siteUrl: process.env.SITE_URL || 'https://graphql-hive.com',
|
|
generateIndexSitemap: false,
|
|
additionalPaths: config => [
|
|
{
|
|
loc: config.siteUrl.replace(/\/$/, '') + '/federation-gateway-audit',
|
|
lastmod: new Date().toISOString(),
|
|
changefreq: 'weekly',
|
|
priority: 0.7,
|
|
},
|
|
],
|
|
output: 'export',
|
|
};
|