mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-13 15:09:13 +00:00
15 lines
344 B
JavaScript
15 lines
344 B
JavaScript
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
|
||
}
|