-
Notifications
You must be signed in to change notification settings - Fork 11
/
gatsby-config.js
46 lines (43 loc) · 1.08 KB
/
gatsby-config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
const siteUrl = `https://starshiptimeline.space`;
module.exports = {
siteMetadata: {
title: `Starship Timeline`,
description: `Keep up to date with SpaceX's Super Heavy Starship, the rocket that will revolutionize space exploration by providing cheaper access to space and making human life multiplanetary.`,
author: `Albéric Trancart`,
siteUrl
},
plugins: [
// Codebase
`gatsby-plugin-resolve-src`,
`gatsby-plugin-eslint`,
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`
}
},
// Assets
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
`gatsby-plugin-styled-components`,
// SEO
`gatsby-plugin-robots-txt`,
`gatsby-plugin-sitemap`,
{
resolve: `gatsby-plugin-canonical-urls`,
options: {
siteUrl
}
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: `UA-110877372-2`,
head: false
}
},
`gatsby-plugin-netlify`
]
};