-
Notifications
You must be signed in to change notification settings - Fork 11
/
gatsby-config.js
104 lines (101 loc) · 2.51 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// gatsby-config.js
module.exports = {
siteMetadata: {
siteName: `The Undefined Podcast`,
siteUrl: `https://undefined.fm`,
},
plugins: [
`gatsby-plugin-react-helmet`,
`gatsby-plugin-glamor`,
`gatsby-plugin-typescript`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
`gatsby-plugin-twitter`,
{
resolve: `gatsby-plugin-canonical-urls`,
options: {
siteUrl: `https://undefined.fm`,
},
},
{
resolve: `gatsby-plugin-favicon`,
options: {
logo: './src/favicon.png',
// WebApp Manifest Configuration
appName: null, // Inferred with your package.json
appDescription: null,
developerName: null,
developerURL: null,
dir: 'auto',
lang: 'en-US',
background: '#fff',
theme_color: '#fff',
display: 'standalone',
orientation: 'any',
start_url: '/?homescreen=1',
version: '1.0',
icons: {
android: true,
appleIcon: true,
appleStartup: false,
coast: false,
favicons: true,
firefox: true,
opengraph: false,
twitter: false,
yandex: false,
windows: false,
},
},
},
{
resolve: `gatsby-plugin-nprogress`,
options: {
// Setting a color is optional.
color: `#C86DD7`,
// Disable the loading spinner.
showSpinner: false,
},
},
{
// resolve: '@uptimeventures/gatsby-source-rss',
// this is our custom fork of @uptimeventures/gatsby-source-rss
// it extracts the embed URL out of the vanilla RSS feed.
resolve: 'gatsby-source-simplecast-rss',
options: {
feed: 'https://feeds.simplecast.com/8lcA0Is7',
},
},
`gatsby-plugin-sitemap`,
{
resolve: 'gatsby-transformer-remark',
options: {
plugins: [
'gatsby-remark-autolink-headers',
{
resolve: 'gatsby-remark-images',
options: {
maxWidth: 1000,
},
},
`gatsby-remark-responsive-iframe`,
`gatsby-remark-copy-linked-files`,
],
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: 'UA-55176740-9',
},
},
{
resolve: `gatsby-plugin-typography`,
options: {
pathToConfigModule: `src/lib/typography`,
},
},
`gatsby-plugin-remove-trailing-slashes`,
`gatsby-plugin-netlify`,
],
};