-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
61 lines (61 loc) · 1.47 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
module.exports = {
siteMetadata: {
title: `#100DaysOfGatsby`,
description: '#100DaysOfGatsby is a challenge in which you have to complete 100 tasks related to GatbyJS',
author: 'Pedro Féo',
siteUrl: 'https://feo-100daysofgatsby.surge.sh/'
},
plugins: [
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
`gatsby-plugin-emotion`,
`gatsby-plugin-offline`,
`gatsby-plugin-react-helmet`,
`gatsby-remark-images`,
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
{
resolve: `gatsby-remark-images`,
options: {
maxWidth: 1080,
},
},
],
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `src`,
path: `${__dirname}/src/`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: 'images',
path: `${__dirname}/src/assets/images`,
},
},
{
resolve: `gatsby-plugin-typography`,
options: {
pathToConfigModule: `src/utils/typography`,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `100DaysOfGatsbyFeo`,
short_name: `GatsbyDays`,
start_url: `/`,
background_color: `#6b37bf`,
theme_color: `#6b37bf`,
display: `standalone`,
icon: `src/assets/images/icon.png`, // This path is relative to the root of the site.
},
},
],
}