mirror of
https://github.com/learnhouse/docs.git
synced 2026-02-17 15:57:39 +01:00
9 lines
236 B
JavaScript
9 lines
236 B
JavaScript
/** @type {import('next-sitemap').IConfig} */
|
|
module.exports = {
|
|
siteUrl: process.env.SITE_URL || "https://docs.learnhouse.app",
|
|
generateRobotsTxt: true, // (optional)
|
|
changefreq: "daily",
|
|
priority: 0.7,
|
|
sitemapSize: 5000,
|
|
};
|