2 Star 0 Fork 0

mirrors_Jam3/nextjs-boilerplate

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
next-sitemap.config.js 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
/** @type {import('next-sitemap').IConfig} */
// for more config options;
// https://www.npmjs.com/package/next-sitemap#configuration-options
const config = require('./src/data/config.json')
module.exports = {
// ========================
// sitemap.xml
// ========================
siteUrl: config.websiteUrl || 'https://something-is-wrong-if-you-see-this.com',
changefreq: 'daily', // always hourly daily weekly monthly yearly never
priority: 0.7, // between 0 and 1
sitemapSize: 5000,
exclude: [
'/unsupported'
// '/page-0'
// '/page-*'
// '/private/*'
],
alternateRefs: [
// multi-language support
// {
// href: 'https://example.com/fr',
// hreflang: 'fr'
// }
],
// transform: async (config, path) => {},
// additionalPaths: async (config) => {},
outDir: 'out',
autoLastmod: true,
generateIndexSitemap: false,
// ========================
// robots.txt
// ========================
generateRobotsTxt: true,
robotsTxtOptions: {
policies: [
{
userAgent: '*',
allow: '/',
disallow: ['/_next', '/404', '/500', '/unsupported', '/favicons']
}
]
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_Jam3/nextjs-boilerplate.git
git@gitee.com:mirrors_Jam3/nextjs-boilerplate.git
mirrors_Jam3
nextjs-boilerplate
nextjs-boilerplate
main

搜索帮助