9 lines
218 B
JavaScript
9 lines
218 B
JavaScript
|
//next-sitemap.config.js
|
||
|
|
||
|
/** @type {import('next-sitemap').IConfig} */
|
||
|
module.exports = {
|
||
|
siteUrl: process.env.SITE_URL || 'https://www.gwkbali.com',
|
||
|
generateRobotsTxt: true, // (optional)
|
||
|
// ...other options
|
||
|
}
|