7 lines
198 B
JavaScript
7 lines
198 B
JavaScript
|
/** @type {import('next-sitemap').IConfig} */
|
||
|
module.exports = {
|
||
|
siteUrl: process.env.SITE_URL || "https://www.clickprompt.org/",
|
||
|
generateRobotsTxt: true, // (optional)
|
||
|
// ...other options
|
||
|
};
|