-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
78 lines (77 loc) · 2.27 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
require("dotenv").config({
path: `.env.${process.env.NODE_ENV}`
});
module.exports = ({ authorName, authorLink }) => {
return {
siteMetadata: {
title: `${process.env.CITY} Relief Resources`,
description: `A list of resources that ${process.env.CITY} residents can both utilize and donate to during and beyond this COVID-19 situation.`,
authorName: `Henry Quinn`,
authorLink: `https://henryneeds.coffee`,
authorTwitter: `Quinncuatro`,
state: `${process.env.STATE}` || `{STATE}`,
city: `${process.env.CITY}` || `{CITY}`,
formId: `${process.env.AIRTABLE_EMBED_ID}`
},
plugins: [
`gatsby-plugin-postcss`,
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-airtable`,
options: {
apiKey: `${process.env.AIRTABLE_API_KEY}`,
tables: [
{
baseId: `${process.env.AIRTABLE_BASE_ID}`,
tableName: `${process.env.AIRTABLE_TABLE_NAME}`
}
]
}
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`
}
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `gatsby-starter-default`,
short_name: `starter`,
start_url: `/`,
background_color: `#663399`,
theme_color: `#663399`,
display: `minimal-ui`,
icon: require.resolve(`./src/images/heart.png`)
}
},
{
resolve: `gatsby-plugin-prefetch-google-fonts`,
options: {
fonts: [
{
family: `Bungee`
}
]
}
},
`gatsby-plugin-preact`
// this seems to break our CSS
// {
// resolve: `gatsby-plugin-purgecss`,
// options: {
// printRejected: process.env.gatsby_log_level === `verbose`,
// develop: process.env.NODE_ENV !== `production`,
// tailwind: true,
// },
// },
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// `gatsby-plugin-offline`,
]
};
};