-
Notifications
You must be signed in to change notification settings - Fork 27
/
gatsby-config.js
54 lines (54 loc) · 1.23 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 = {
plugins: [
{
resolve: "gatsby-source-twitter-profiles",
options: {
consumerKey: process.env.WWD_TWITTER_CONSUMER_KEY,
consumerSecret: process.env.WWD_TWITTER_CONSUMER_KEY,
bearerToken: process.env.WWD_TWITTER_BEARER_TOKEN,
twitterIdForFollowingList: "855501234924429312"
}
},
{
resolve: "gatsby-source-seeker",
options: {
key: process.env.WWD_SEEKER_KEY
}
},
{
resolve: `gatsby-plugin-sass`,
options: {
cssLoaderOptions: {
camelCase: false
}
}
},
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: process.env.WWD_GOOGLE_ANALYTICS_ID
}
},
{
resolve: `gatsby-plugin-favicon`,
options: {
logo: "./src/favicon.png",
injectHTML: true,
icons: {
android: false,
appleIcon: false,
appleStartup: false,
coast: false,
favicons: true,
firefox: false,
twitter: false,
yandex: false,
windows: false
}
}
}
]
};