10 lines
251 B
JavaScript
10 lines
251 B
JavaScript
/** @type {import('next-sitemap').IConfig} */
|
|
module.exports = {
|
|
siteUrl: 'https://strike-arena.kz',
|
|
generateRobotsTxt: true,
|
|
changefreq: 'weekly',
|
|
priority: 0.7,
|
|
sitemapSize: 5000,
|
|
exclude: ['/admin', '/private'],
|
|
};
|