How to add sitemap and robots.txt to Next.js application

How to add sitemap and robots.txt to Next.js application

📹 View on Youtube

It's important for any website to have good search engine optimization (SEO) in order to be discovered and visible in search engines such as Google. This is especially true for blogs because you want to have your blog posts shown by search engines.

I recently built my own blog with Next.js and I wanted to make sure that my blog posts would be discovered properly by Google (and other search engines, but I'll just say Google because let's be honest, who Bings?).

Read more: How I converted my website from Wordpress to Jamstack

In order for my blog posts to be properly discovered by Google, I needed to make my site SEO friendly. There are bunch of things you can do to improve your website SEO. Adding a sitemap and robots.txt are two major ones.

In this article I will explain what sitemap and robots.txt are and show you how to add them to your own Next.js application.

What are sitemap and robots.txt

Ok so if sitemap and robots.txt are important for my website SEO, what are and what do they actually do?

Robots.txt

From developers.google.com: A robots.txt file tells search engine crawlers which pages or files the crawler can or can't request from your site. This is used mainly to avoid overloading your site with requests; it is not a mechanism for keeping a web page out of Google.

Sitemap

From developers.google.com: A sitemap is a file where you provide information about the pages, videos, and other files on your site, and the relationships between them. Search engines like Google read this file to more intelligently crawl your site. A sitemap tells Google which pages and files you think are important in your site, and also provides valuable information about these files: for example, for pages, when the page was last updated, how often the page is changed, and any alternate language versions of a page.

How to add robots.txt

Robots.txt file needs to be available in the website root like this www.example.com/robots.txt. So all we need to do is to create a new file named robots.txt to the /public folder.

Add the following inside the robots.txt file.

1User-agent: *
2Allow: /
3
4Sitemap: https://www.example.com/api/blog-sitemap

Two first lines tell crawlers that the entire site can be crawled. The last line tells crawlers where to find the the sitemap for the website (make sure to replace the example.com with your own domain). We will add the sitemap in the next step.

You can read more about robots.txt rules from developers.google.com.

How to add sitemap

So sitemap is basically an xml file listing the pages and content of a website. Google will read the sitemap and crawl the site based on the sitemap.

Example of a sitemap xml:

1<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">
2  <url>
3    <loc>https://tuomokankaanpaa.com/blog/13-keyboard-shortcuts-you-should-be-using-to-increase-your-productivity</loc>
4    <changefreq>daily</changefreq>
5    <priority>0.9</priority>
6  </url>
7  <url>
8    <loc>https://tuomokankaanpaa.com/blog/5-tips-for-successful-remote-work</loc>
9    <changefreq>daily</changefreq>
10    <priority>0.9</priority>
11  </url>
12  <url>
13    <loc>https://tuomokankaanpaa.com/blog/6-things-every-beginner-react-developer-should-know</loc>
14    <changefreq>daily</changefreq>
15    <priority>0.9</priority>
16  </url>
17</urlset>

I didn't want to have to modify and update the sitemap xml file every time I added a new blog post. I wanted to have the sitemap to update itself and live a life of its own, so to speak.

Because sitemap path can be defined in the robots.txt file, we are not restricted to a specific path (like we are with robots.txt). So we can use Next.js API Routes to generate and return the sitemap.

I created an API Route /api/blog-sitemap which returns up to date sitemap for my blog posts.

To do this in your own Next.js application, you need to do the following.

Install npm package sitemap.

1yarn add sitemap

Then create a new file blog-sitemap.js to /pages/api folder. Inside that file place the following code and replace the links array with your data.

1const { SitemapStream, streamToPromise } = require("sitemap");
2const { Readable } = require("stream");
3
4export default async (req, res) => {
5  // An array with your links
6  const links = [
7    { url: "/blog/my-first-blog-post/", changefreq: "daily", priority: 0.3 },
8    { url: "/blog/my-second-blog-post", changefreq: "daily", priority: 0.3 },
9    { url: "/blog/my-third-blog-post/", changefreq: "daily", priority: 0.3 },
10  ];
11
12  // Create a stream to write to
13  const stream = new SitemapStream({ hostname: `https://${req.headers.host}` });
14
15  res.writeHead(200, {
16    "Content-Type": "application/xml",
17  });
18
19  const xmlString = await streamToPromise(
20    Readable.from(links).pipe(stream)
21  ).then((data) => data.toString());
22
23  res.end(xmlString);
24};

Now you have always up to date sitemap. You can test it and navigate to /api/blog-sitemap and you should see xml sitemap of your blog posts.

You can use xml-sitemaps to validate your sitemap.

Final thoughts

Now you have a robots.txt and sitemap setup to your Next.js application.

As I mentioned before, I created the sitemap this way so I would not have to worry about it and it would always be up to date.

I researched other options to implement sitemap too. One other way I came across was to use nextjs-sitemap. I haven't used this package but it seems legit and there seems to be a lot of things you can configure and customise with it.

I didn't end up using the nextjs-sitemap beacuse the api route was simplier and more straight forward for me. My website structure is also quite simple, so I didn't want to overkill.

If you have more complex website structure and you want to customise your sitemap more, you might be better off using nextjs-sitemap. But if you are like me and your site or blog has simple structure, the api route way works just fine.

If you want to check out the complete code for my website and sitemap generation, it's up on Github and you can find it here.

That's all for now, thank you for reading! If you liked this article, consider subscribing to my newsletter for more content like this.


Read next:
If you want to learn more, make sure to subscribe on Youtube!

Subscribe to the newsletter