Gatsby Theme Docs

Content Location

The content location is where the files you want to render within your site lives. Currently only Markdown files are supported.

  1. Provide a custom contentPath

    module.exports = {
    plugins: [
    {
      resolve: "gatsby-theme-docbar",
      options: {
        contentPath: "content/docs/",
      },
    },
    ],
    }
    
  2. Restart your site

    gatsby develop