forked from freeCodeCamp/guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
54 lines (54 loc) · 1.19 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
module.exports = {
siteMetadata: {
siteUrl: 'https://guide.freecodecamp.org',
title: 'freeCodeCamp Guide'
},
plugins: [
'gatsby-plugin-react-helmet',
{
resolve: 'gatsby-plugin-sass',
options: {
precision: 8
}
},
{
resolve: '@freecodecamp/gatsby-source-filesystem',
options: {
name: 'pages',
path: `${__dirname}/src/pages/`
}
},
{
resolve: 'gatsby-transformer-remark',
options: {
plugins: [
'gatsby-remark-fcc-forum-emoji',
'gatsby-remark-smartypants',
'gatsby-remark-prismjs'
]
}
},
'fcc-create-nav-data',
{
resolve: 'gatsby-plugin-google-analytics',
options: {
trackingId: 'UA-55446531-6'
}
},
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'freeCodeCamp Guide',
/* eslint-disable camelcase */
short_name: 'fCC Guide',
start_url: '/',
background_color: '#ffffff',
theme_color: '#006400',
/* eslint-enable camelcase */
display: 'minimal-ui',
icon: 'static/square_puck.png'
}
},
'gatsby-plugin-sitemap'
]
};