6 lines
190 B
JavaScript
6 lines
190 B
JavaScript
/** @type {import('next-sitemap').IConfig} */
|
|
module.exports = {
|
|
siteUrl: process.env.SITE_URL || 'https://www.aaronjy.me',
|
|
generateRobotsTxt: true // (optional)
|
|
// ...other options
|
|
}
|