7 lines
183 B
JavaScript
7 lines
183 B
JavaScript
/** @type {import('next-sitemap').IConfig} */
|
|
module.exports = {
|
|
siteUrl: process.env.SITE_URL || 'https://www.abyss-lab.app',
|
|
generateRobotsTxt: true,
|
|
exclude: ['*/temp/*'],
|
|
}
|