-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
70 lines (69 loc) · 2.03 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
require("dotenv").config({
path: `.env.${process.env.NODE_ENV}`,
})
module.exports = {
siteMetadata: {
title: `Intersections: Vital Spaces, Maida, Warehouse 21`,
description: `Sustaining & enhancing Santa Fe's cultural vibrancy by creating
affordable spaces for artists working in all media to create, present, connect, & teach`,
},
flags: { PRESERVE_WEBPACK_CACHE: true },
plugins: [
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-airtable`,
options: {
apiKey: process.env.GATSBY_AIRTABLE_API_KEY, // may instead specify via env, see below
concurrency: 8, // default, see using markdown and attachments for more information
tables: [
{
baseId: process.env.GATSBY_AIRTABLE_BASE_ID,
tableName: `Artist`,
mapping: { Bio_Image: "fileNode" },
},
{
baseId: process.env.GATSBY_AIRTABLE_BASE_ID,
tableName: `Artwork`,
mapping: { Image: "fileNode", Audio: "fileNode" },
},
{
baseId: process.env.GATSBY_AIRTABLE_BASE_ID,
tableName: `Location`,
mapping: { Image: "fileNode" },
},
{
baseId: process.env.GATSBY_AIRTABLE_BASE_ID,
tableName: `Theme`,
mapping: { Image: "fileNode" },
},
{
baseId: process.env.GATSBY_AIRTABLE_BASE_ID,
tableName: `Medium`,
mapping: { Image: "fileNode" },
},
{
baseId: process.env.GATSBY_AIRTABLE_BASE_ID,
tableName: `Affiliation`,
mapping: { Image: "fileNode" },
},
],
},
},
{
resolve: `gatsby-plugin-google-fonts`,
options: {
fonts: [`poppins`, `jaldi`],
display: "swap",
},
},
{
resolve: `gatsby-plugin-postcss`,
},
`gatsby-plugin-image`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`, // Needed for dynamic images
],
flags: {
FAST_DEV: true,
},
}