next-sitemap

next-sitemap

自动化生成和管理Next.js网站站点地图的高效工具

next-sitemap是一款用于Next.js项目的自动化工具,可生成和管理站点地图及robots.txt文件。该工具支持自定义配置、动态生成、多语言和服务器端生成等功能,有助于优化网站SEO。通过灵活的API,开发者可根据需求进行定制,提高搜索引擎对网站内容的爬取和索引效率。

next-sitemapSEO网站地图robots.txtNext.jsGithub开源项目

BANNER

<div align="center">

Build Status npm version PRs Welcome <a href="https://twitter.com/intent/follow?screen_name=iamvishnusankar"> <img src="https://img.shields.io/twitter/follow/iamvishnusankar?style=social&logo=twitter" alt="follow on Twitter"> </a>

</div>

Table of contents

Getting started

Installation

yarn add next-sitemap

Create config file

next-sitemap requires a basic config file (next-sitemap.config.js) under your project root

next-sitemap will load environment variables from .env files by default.

/** @type {import('next-sitemap').IConfig} */ module.exports = { siteUrl: process.env.SITE_URL || 'https://example.com', generateRobotsTxt: true, // (optional) // ...other options }

Building sitemaps

Add next-sitemap as your postbuild script

{ "build": "next build", "postbuild": "next-sitemap" }

Custom config file

You can also use a custom config file instead of next-sitemap.config.js. Just pass --config <your-config-file>.js to build command (Example: custom-config-file)

{ "build": "next build", "postbuild": "next-sitemap --config awesome.config.js" }

Building sitemaps with pnpm

When using pnpm you need to create a .npmrc file in the root of your project if you want to use a postbuild step:

//.npmrc
enable-pre-post-scripts=true

Index sitemaps (Optional)

📣 From next-sitemap v2.x onwards, sitemap.xml will be Index Sitemap. It will contain urls of all other generated sitemap endpoints.

Index sitemap generation can be turned off by setting generateIndexSitemap: false in next-sitemap config file. (This is useful for small/hobby sites which does not require an index sitemap) (Example: no-index-sitemaps)

Splitting large sitemap into multiple files

Define the sitemapSize property in next-sitemap.config.js to split large sitemap into multiple files.

/** @type {import('next-sitemap').IConfig} */ module.exports = { siteUrl: 'https://example.com', generateRobotsTxt: true, sitemapSize: 7000, }

Above is the minimal configuration to split a large sitemap. When the number of URLs in a sitemap is more than 7000, next-sitemap will create sitemap (e.g. sitemap-0.xml, sitemap-1.xml) and index (e.g. sitemap.xml) files.

Configuration Options

propertydescriptiontype
siteUrlBase url of your websitestring
output (optional)Next.js output modes. Check documentation.standalone, export
changefreq (optional)Change frequency. Default dailystring
priority (optional)Priority. Default 0.7number
sitemapBaseFileName (optional)The name of the generated sitemap file before the file extension. Default "sitemap"string
alternateRefs (optional)Denote multi-language support by unique URL. Default []AlternateRef[]
sitemapSize(optional)Split large sitemap into multiple files by specifying sitemap size. Default 5000number
autoLastmod (optional)Add <lastmod/> property. Default truetrue
exclude (optional)Array of relative paths (wildcard pattern supported) to exclude from listing on sitemap.xml or sitemap-*.xml. e.g.: ['/page-0', '/page-*', '/private/*']. <br></br>Apart from this option next-sitemap also offers a custom transform option which could be used to exclude urls that match specific patternsstring[]
sourceDir (optional)next.js build directory. Default .nextstring
outDir (optional)All the generated files will be exported to this directory. Default publicstring
transform (optional)A transformation function, which runs for each relative-path in the sitemap. Returning null value from the transformation function will result in the exclusion of that specific path from the generated sitemap list.async function
additionalPaths (optional)Async function that returns a list of additional paths to be added to the generated sitemap list.async function
generateIndexSitemapGenerate index sitemaps. Default trueboolean
generateRobotsTxt (optional)Generate a robots.txt file and list the generated sitemaps. Default falseboolean
robotsTxtOptions.transformRobotsTxt (optional)Custom robots.txt transformer function. (Example: custom-robots-txt-transformer) <br/><br/> Default: async(config, robotsTxt)=> robotsTxtasync function
robotsTxtOptions.policies (optional)Policies for generating robots.txt.<br/><br/> Default: <br/>[{ userAgent: '*', allow: '/' }]IRobotPolicy[]
robotsTxtOptions.additionalSitemaps (optional)Options to add additional sitemaps to robots.txt host entrystring[]
robotsTxtOptions.includeNonIndexSitemaps (optional)From v2.4x onwards, generated robots.txt will only contain url of index sitemap and custom provided endpoints from robotsTxtOptions.additionalSitemaps. <br/> <br/> This is to prevent duplicate url submission (once through index-sitemap -> sitemap-url and once through robots.txt -> HOST) <br/><br/>Set this option true to add all generated sitemap endpoints to robots.txt<br><br/> Default false (Recommended)boolean

Custom transformation function

Custom transformation provides an extension method to add, remove or exclude path or properties from a url-set. Transform function runs for each relative path in the sitemap. And use the key: value object to add properties in the XML.

Returning null value from the transformation function will result in the exclusion of that specific relative-path from the generated sitemap list.

/** @type {import('next-sitemap').IConfig} */ module.exports = { transform: async (config, path) => { // custom function to ignore the path if (customIgnoreFunction(path)) { return null } // only create changefreq along with path // returning partial properties will result in generation of XML field with only returned values. if (customLimitedField(path)) { // This returns `path` & `changefreq`. Hence it will result in the generation of XML field with `path` and `changefreq` properties only. return { loc: path, // => this will be exported as http(s)://<config.siteUrl>/<path> changefreq: 'weekly', } } // Use default transformation for all other cases return { loc: path, // => this will be exported as http(s)://<config.siteUrl>/<path> changefreq: config.changefreq, priority: config.priority, lastmod: config.autoLastmod ? new Date().toISOString() : undefined, alternateRefs: config.alternateRefs ?? [], } }, }

Additional paths function

additionalPaths this function can be useful if you have a large list of pages, but you don't want to render them all and use fallback: true. Result of executing this function will be added to the general list of paths and processed with sitemapSize. You are free to add dynamic paths, but unlike additionalSitemap, you do not need to split the list of paths into different files in case there are a lot of paths for one file.

If your function returns a path that already exists, then it will simply be updated, duplication will not happen.

/** @type {import('next-sitemap').IConfig} */ module.exports = { additionalPaths: async (config) => { const result = [] // required value only result.push({ loc: '/additional-page-1' }) // all possible values result.push({ loc: '/additional-page-2', changefreq: 'yearly', priority: 0.7, lastmod: new Date().toISOString(), // acts only on '/additional-page-2' alternateRefs: [ { href: 'https://es.example.com', hreflang: 'es', }, { href: 'https://fr.example.com', hreflang: 'fr', }, ], }) // using transformation from the current configuration result.push(await config.transform(config, '/additional-page-3')) return result }, }

Google News, image and video sitemap

Url set can contain additional sitemaps defined by google. These are Google News sitemap, image sitemap or video sitemap. You can add the values for these sitemaps by updating entry in transform function or adding it with additionalPaths. You have to return a sitemap entry in both cases, so it's the best place for updating the output. This example will add an image and news tag to each entry but IRL you would of course use it with some condition or within additionalPaths result.

/** @type {import('next-sitemap').IConfig} */ const config = { transform: async (config, path) => { return { loc: path, // => this will be exported as http(s)://<config.siteUrl>/<path> changefreq: config.changefreq, priority: config.priority, lastmod: config.autoLastmod ? new Date().toISOString() : undefined, images: [{ loc: 'https://example.com/image.jpg' }], news: { title: 'Article 1', publicationName: 'Google Scholar', publicationLanguage: 'en', date: new Date(), }, } }, } export default config

Full configuration example

Here's an example next-sitemap.config.js configuration with all options

/** @type {import('next-sitemap').IConfig} */ module.exports = { siteUrl: 'https://example.com', changefreq: 'daily', priority: 0.7, sitemapSize: 5000, generateRobotsTxt: true, exclude: ['/protected-page', '/awesome/secret-page'], alternateRefs: [ { href: 'https://es.example.com', hreflang: 'es', }, { href: 'https://fr.example.com', hreflang: 'fr', }, ], // Default transformation function transform: async (config, path) => { return { loc: path, // => this will be exported as http(s)://<config.siteUrl>/<path> changefreq: config.changefreq, priority: config.priority, lastmod: config.autoLastmod ? new Date().toISOString() : undefined, alternateRefs: config.alternateRefs ?? [], } }, additionalPaths: async (config) => [ await config.transform(config, '/additional-page'), ], robotsTxtOptions: { policies: [ { userAgent: '*', allow: '/', }, { userAgent: 'test-bot', allow: ['/path', '/path-2'], }, { userAgent: 'black-listed-bot', disallow: ['/sub-path-1', '/path-2'], }, ], additionalSitemaps: [ 'https://example.com/my-custom-sitemap-1.xml', 'https://example.com/my-custom-sitemap-2.xml', 'https://example.com/my-custom-sitemap-3.xml', ], }, }

Above configuration will generate sitemaps based on your project and a robots.txt like this.

# * User-agent: * Allow: / # test-bot User-agent: test-bot Allow: /path Allow: /path-2 # black-listed-bot User-agent: black-listed-bot Disallow: /sub-path-1 Disallow: /path-2 # Host Host: https://example.com # Sitemaps Sitemap: https://example.com/sitemap.xml # Index sitemap Sitemap: https://example.com/my-custom-sitemap-1.xml Sitemap: https://example.com/my-custom-sitemap-2.xml Sitemap: https://example.com/my-custom-sitemap-3.xml

Generating dynamic/server-side sitemaps

next-sitemap now provides two APIs to generate server side sitemaps. This will help to dynamically generate index-sitemap(s) and sitemap(s) by sourcing data from CMS or custom source.

  • getServerSideSitemapIndex: Generates index sitemaps based on urls provided and returns application/xml response. Supports next13+ route.{ts,js} file.

    • To continue using inside pages directory, import getServerSideSitemapIndexLegacy instead.
  • getServerSideSitemap: Generates sitemap based on field entires and returns application/xml response. Supports next13+ route.{ts,js} file.

    • To continue using inside pages directory, import getServerSideSitemapLegacy instead.

Server side index-sitemaps (getServerSideSitemapIndex)

Here's a sample script to generate index-sitemap on server side.

<details> <summary>1. Index sitemap (app directory)</summary>

Create app/server-sitemap-index.xml/route.ts file.

// app/server-sitemap-index.xml/route.ts import { getServerSideSitemapIndex } from 'next-sitemap' export async function GET(request: Request) { // Method to source urls from cms // const urls = await fetch('https//example.com/api') return getServerSideSitemapIndex([ 'https://example.com/path-1.xml', 'https://example.com/path-2.xml', ]) }
</details> <details> <summary>2. Index sitemap (pages directory) (legacy)</summary>

Create pages/server-sitemap-index.xml/index.tsx file.

// pages/server-sitemap-index.xml/index.tsx import { getServerSideSitemapIndexLegacy } from 'next-sitemap' import { GetServerSideProps } from 'next' export const getServerSideProps: GetServerSideProps = async (ctx) => { // Method to source urls from cms // const urls = await fetch('https//example.com/api') return getServerSideSitemapIndexLegacy(ctx, [ 'https://example.com/path-1.xml',

编辑推荐精选

TRAE编程

TRAE编程

AI辅助编程,代码自动修复

Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。

AI工具TraeAI IDE协作生产力转型热门
蛙蛙写作

蛙蛙写作

AI小说写作助手,一站式润色、改写、扩写

蛙蛙写作—国内先进的AI写作平台,涵盖小说、学术、社交媒体等多场景。提供续写、改写、润色等功能,助力创作者高效优化写作流程。界面简洁,功能全面,适合各类写作者提升内容品质和工作效率。

AI辅助写作AI工具蛙蛙写作AI写作工具学术助手办公助手营销助手AI助手
问小白

问小白

全能AI智能助手,随时解答生活与工作的多样问题

问小白,由元石科技研发的AI智能助手,快速准确地解答各种生活和工作问题,包括但不限于搜索、规划和社交互动,帮助用户在日常生活中提高效率,轻松管理个人事务。

热门AI助手AI对话AI工具聊天机器人
Transly

Transly

实时语音翻译/同声传译工具

Transly是一个多场景的AI大语言模型驱动的同声传译、专业翻译助手,它拥有超精准的音频识别翻译能力,几乎零延迟的使用体验和支持多国语言可以让你带它走遍全球,无论你是留学生、商务人士、韩剧美剧爱好者,还是出国游玩、多国会议、跨国追星等等,都可以满足你所有需要同传的场景需求,线上线下通用,扫除语言障碍,让全世界的语言交流不再有国界。

讯飞智文

讯飞智文

一键生成PPT和Word,让学习生活更轻松

讯飞智文是一个利用 AI 技术的项目,能够帮助用户生成 PPT 以及各类文档。无论是商业领域的市场分析报告、年度目标制定,还是学生群体的职业生涯规划、实习避坑指南,亦或是活动策划、旅游攻略等内容,它都能提供支持,帮助用户精准表达,轻松呈现各种信息。

AI办公办公工具AI工具讯飞智文AI在线生成PPTAI撰写助手多语种文档生成AI自动配图热门
讯飞星火

讯飞星火

深度推理能力全新升级,全面对标OpenAI o1

科大讯飞的星火大模型,支持语言理解、知识问答和文本创作等多功能,适用于多种文件和业务场景,提升办公和日常生活的效率。讯飞星火是一个提供丰富智能服务的平台,涵盖科技资讯、图像创作、写作辅助、编程解答、科研文献解读等功能,能为不同需求的用户提供便捷高效的帮助,助力用户轻松获取信息、解决问题,满足多样化使用场景。

热门AI开发模型训练AI工具讯飞星火大模型智能问答内容创作多语种支持智慧生活
Spark-TTS

Spark-TTS

一种基于大语言模型的高效单流解耦语音令牌文本到语音合成模型

Spark-TTS 是一个基于 PyTorch 的开源文本到语音合成项目,由多个知名机构联合参与。该项目提供了高效的 LLM(大语言模型)驱动的语音合成方案,支持语音克隆和语音创建功能,可通过命令行界面(CLI)和 Web UI 两种方式使用。用户可以根据需求调整语音的性别、音高、速度等参数,生成高质量的语音。该项目适用于多种场景,如有声读物制作、智能语音助手开发等。

咔片PPT

咔片PPT

AI助力,做PPT更简单!

咔片是一款轻量化在线演示设计工具,借助 AI 技术,实现从内容生成到智能设计的一站式 PPT 制作服务。支持多种文档格式导入生成 PPT,提供海量模板、智能美化、素材替换等功能,适用于销售、教师、学生等各类人群,能高效制作出高品质 PPT,满足不同场景演示需求。

讯飞绘文

讯飞绘文

选题、配图、成文,一站式创作,让内容运营更高效

讯飞绘文,一个AI集成平台,支持写作、选题、配图、排版和发布。高效生成适用于各类媒体的定制内容,加速品牌传播,提升内容营销效果。

热门AI辅助写作AI工具讯飞绘文内容运营AI创作个性化文章多平台分发AI助手
材料星

材料星

专业的AI公文写作平台,公文写作神器

AI 材料星,专业的 AI 公文写作辅助平台,为体制内工作人员提供高效的公文写作解决方案。拥有海量公文文库、9 大核心 AI 功能,支持 30 + 文稿类型生成,助力快速完成领导讲话、工作总结、述职报告等材料,提升办公效率,是体制打工人的得力写作神器。

下拉加载更多