-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
70 lines (68 loc) · 1.78 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
/* eslint-disable import/no-extraneous-dependencies */
const sass = require("sass");
require("dotenv").config();
module.exports = {
siteMetadata: {
title: "Designed By Us Design Corp",
description: `Directory highlights all under represented - scientist, technologists, engineers, artists, mathmeticians and designers`,
siteUrl: `https://designcorps.designedbyus.org/`,
// pathPrefix: "/design-corps-test"
},
plugins: [
{
resolve: "gatsby-source-twitter-profiles",
options: {
consumerKey: process.env.DBU_CONSUMER_KEY,
consumerSecret: process.env.DBU_CONSUMER_SECRET,
bearerToken: process.env.DBU_BEARER_TOKEN,
twitterIdForFollowingList: "1337449516946087938",
},
},
{
resolve: `gatsby-plugin-sass`,
options: {
cssLoaderOptions: {
camelCase: false,
},
implementation: sass,
},
},
`gatsby-plugin-lodash`,
`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/dbu-favicon.png",
injectHTML: true,
icons: {
android: false,
appleIcon: false,
appleStartup: false,
coast: false,
favicons: true,
firefox: false,
twitter: false,
yandex: false,
windows: false,
},
},
},
{
resolve: `gatsby-plugin-google-fonts`,
options: {
fonts: [
`Space Mono`,
`source sans pro:400`, // you can also specify font weights and styles
],
},
},
],
};