Gatsby Config API
Site configuration options for a Gatsby site are placed in a file at the root of the project folder called gatsby-config.js
.
Note: There are many sample configs which may be helpful to reference in the different Gatsby Example Websites.
Configuration options
Options available to set within gatsby-config.js
include:
- siteMetadata (object)
- plugins (array)
- pathPrefix (string)
- polyfill (boolean)
- mapping (object)
- proxy (object)
- developMiddleware (function)
siteMetadata
When you want to reuse common pieces of data across the site (for example, your site title), you can store that data in siteMetadata
:
This way you can store it in one place, and pull it whenever you need it. If you ever need to update the info, you only have to change it here.
See a full description and sample usage in Gatsby.js Tutorial Part Four.
Plugins
Plugins are Node.js packages that implement Gatsby APIs. The config file accepts an array of plugins. Some plugins may need only to be listed by name, while others may take options (see the docs for individual plugins).
See more about Plugins for more on utilizing plugins, and to see available official and community plugins.
pathPrefix
It’s common for sites to be hosted somewhere other than the root of their domain. Say you have a Gatsby site at example.com/blog/
. In this case, you would need a prefix (/blog
) added to all paths on the site.
See more about Adding a Path Prefix.
Polyfill
Gatsby uses the ES6 Promise API. Because some browsers don’t support this, Gatsby includes a Promise polyfill by default.
If you’d like to provide your own Promise polyfill, you can set polyfill
to false.
See more about Browser Support in Gatsby.
Mapping node types
Gatsby includes an advanced feature that lets you create “mappings” between node types.
Note: Gatsby v2.2 introduced a new way to create foreign-key relations between node types with the
@link
GraphQL field extension.
For instance, imagine you have a multi-author markdown blog where you want to “link” from each blog post to the author information stored in a yaml file named author.yaml
:
You can map between the author
field in frontmatter
to the id in the author.yaml
objects by adding to your gatsby-config.js
:
You may need to install the appropriate file transformer (in this case YAML) and set up gatsby-source-filesystem properly for Gatsby to pick up the mapping files. This applies to other file types later mentioned in this segment as well.
Gatsby then uses this mapping when creating the GraphQL schema to enable you to query data from both sources:
Mapping can also be used to map an array of ids to any other collection of data. For example, if you have two JSON files
experience.json
and tech.json
as follows:
And then add the following rule to your gatsby-config.js
:
You can query the tech
object via the referred ids in experience
:
Mapping also works between Markdown files. For example, instead of having all authors in a YAML file, you could have info about each author in a separate Markdown file:
And then add the following rule to your gatsby-config.js
:
Similarly to YAML and JSON files, mapping between Markdown files can also be used to map an array of ids.
Proxy
Setting the proxy config option will tell the develop server to proxy any unknown requests to your specified server. For example:
See more about Proxying API Requests in Develop.
Advanced proxying with developMiddleware
See more about adding develop middleware.
Edit this page on GitHub