14 lines
286 B
JavaScript
14 lines
286 B
JavaScript
/** @type {import('next-sitemap').IConfig} */
|
|
module.exports = {
|
|
siteUrl: process.env.SITE_URL || 'https://www.aaronjy.me',
|
|
changefreq: 'weekly',
|
|
generateRobotsTxt: true,
|
|
robotsTxtOptions: {
|
|
policies: [
|
|
{
|
|
userAgent: "*",
|
|
allow: "/"
|
|
}
|
|
]
|
|
}
|
|
}
|