blog / next-sitemap.config.js
sandy-try's picture
Upload 699 files
1b72d7e verified
raw
history blame contribute delete
No virus
344 Bytes
const BLOG = require('./blog.config')
/**
* 通常没啥用,sitemap交给 /pages/sitemap.xml.js 动态生成
*/
module.exports = {
siteUrl: BLOG.LINK,
changefreq: 'daily',
priority: 0.7,
generateRobotsTxt: true,
sitemapSize: 7000
// ...other options
// https://github.com/iamvishnusankar/next-sitemap#configuration-options
}