<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>
yarn add next-sitemap
next-sitemap requires a basic config file (next-sitemap.config.js) under your project root
✅
next-sitemapwill load environment variables from.envfiles by default.
/** @type {import('next-sitemap').IConfig} */ module.exports = { siteUrl: process.env.SITE_URL || 'https://example.com', generateRobotsTxt: true, // (optional) // ...other options }
Add next-sitemap as your postbuild script
{ "build": "next build", "postbuild": "next-sitemap" }
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" }
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
📣 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)
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.
| property | description | type |
|---|---|---|
| siteUrl | Base url of your website | string |
| output (optional) | Next.js output modes. Check documentation. | standalone, export |
| changefreq (optional) | Change frequency. Default daily | string |
| priority (optional) | Priority. Default 0.7 | number |
| 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 5000 | number |
| autoLastmod (optional) | Add <lastmod/> property. Default true | true |
| 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 patterns | string[] |
| sourceDir (optional) | next.js build directory. Default .next | string |
| outDir (optional) | All the generated files will be exported to this directory. Default public | string |
| 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 |
| generateIndexSitemap | Generate index sitemaps. Default true | boolean |
| generateRobotsTxt (optional) | Generate a robots.txt file and list the generated sitemaps. Default false | boolean |
| robotsTxtOptions.transformRobotsTxt (optional) | Custom robots.txt transformer function. (Example: custom-robots-txt-transformer) <br/><br/> Default: async(config, robotsTxt)=> robotsTxt | async 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 entry | string[] |
| 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 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 ?? [], } }, }
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 }, }
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
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
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.
getServerSideSitemapIndexLegacy instead.getServerSideSitemap: Generates sitemap based on field entires and returns application/xml response. Supports next13+ route.{ts,js} file.
getServerSideSitemapLegacy instead.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.
</details> <details> <summary>2. Index sitemap (pages directory) (legacy)</summary>// 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', ]) }
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',


AI一键生成PPT,就用博思AIPPT!
博思AIPPT,新一代的AI生成PPT平台,支持智能生成PPT、AI美化PPT、文本&链接生成PPT、导入Word/PDF/Markdown文档生成PPT等,内置海量精美PPT模板,涵盖商务、教育、科技等不同风格,同时针对每个页面提供多种版式,一键自适应切换,完美适配各种办公场景。


AI赋能电商视觉革命,一站式智能商拍平台
潮际好麦深耕服装行业,是国内AI试衣效果最好的软件。使用先进AIGC能力为电商卖家批量提供优质的、低成本的商拍图。合作品牌有Shein、Lazada、安踏、百丽等65个国内外头部品牌,以及国内10万+淘宝、天猫、京东等主流平台的品牌商家,为卖家节省将近85%的出图成本,提升约3倍出图效率,让品牌能够快速上架。


企业专属的AI法律顾问
iTerms是法大大集团旗下法律子品牌,基于最先进的大语言模型(LLM)、专业的法律知识库和强大的智能体架构,帮助企业扫清合规障碍,筑牢风控防线,成为您企业专属的AI法律顾问。


稳定高效的流量提升解决方案,助力品牌曝光
稳定高效的流量提升解决方案,助力品牌曝光


最新版Sora2模型免费使用,一键生成无水印视频
最新版Sora2模型免费使用,一键生成无水印视频


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


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


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


最强AI数据分析助手
小浣熊家族Raccoon,您的AI智能助手,致力于通过先进的人工智能技术,为用户提供高效、便捷的智能服务。无论是日常咨询还是专业问题解答,小浣熊都能以快速、准确的响应满足您的需求,让您的生活更加智能便捷。


像人一样思考的AI智能体
imini 是一款超级AI智能体,能根据人类指令,自主思考、自主完成、并且交付结果的AI智能体。
最新AI工具、AI资讯
独家AI资源、AI项目落地

微信扫一扫关注公众号