mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-13 17:45:41 +00:00
6 lines
199 B
JavaScript
6 lines
199 B
JavaScript
|
/** @type {import('next-sitemap').IConfig} */
|
||
|
module.exports = {
|
||
|
siteUrl: process.env.NEXT_PUBLIC_SITE_URL || 'https://example.com',
|
||
|
generateRobotsTxt: true,
|
||
|
generateIndexSitemap: false
|
||
|
}
|