Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 1.51 KB

creating-a-sitemap.md

File metadata and controls

35 lines (23 loc) · 1.51 KB
title
Creating a Sitemap

What is a sitemap?

An XML sitemap lists a website’s important pages, making sure search engines (such as Google) can find and crawl them all. In effect, a sitemap helps a search engine understand your website structure.

Think of it as a map for your website. It shows what all of the pages are on your website.

Install

To generate an XML sitemap, you will use the gatsby-plugin-sitemap package. To install this package, run the following command: npm install --save gatsby-plugin-sitemap

Once installation is complete, we can now add this plugin to our gatsby-config.js, like so:

module.exports = {
  siteMetadata: {
    siteUrl: `https://www.example.com`,
  },
  plugins: [`gatsby-plugin-sitemap`],
}

Note: The siteUrl property must be defined and not left empty.

Next run a build (npm run build) since the sitemap generation will only happen for production builds. This is all that's required to get a working sitemap with Gatsby! By default, the generated sitemap path is /sitemap.xml and will include all of your site’s pages, but of course the plugin exposes options to configure this default functionality.

Additional Modification

Additional modification steps are available in the gatsby-plugin-sitemap documentation