2022-03-24 16:28:36 +00:00
|
|
|
/** @type {import('next-sitemap').IConfig} */
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
siteUrl: process.env.SITE_URL || 'https://manifold.markets',
|
|
|
|
changefreq: 'hourly',
|
|
|
|
priority: 0.7, // Set high priority by default
|
2022-03-24 16:52:13 +00:00
|
|
|
exclude: ['/admin', '/server-sitemap.xml'],
|
2022-03-24 16:28:36 +00:00
|
|
|
generateRobotsTxt: true,
|
2022-03-24 16:52:13 +00:00
|
|
|
robotsTxtOptions: {
|
|
|
|
additionalSitemaps: [
|
|
|
|
'https://manifold.markets/server-sitemap.xml', // <==== Add here
|
|
|
|
],
|
|
|
|
},
|
2022-03-24 16:28:36 +00:00
|
|
|
// Other options: https://github.com/iamvishnusankar/next-sitemap#configuration-options
|
|
|
|
}
|