-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-config.js
75 lines (75 loc) · 1.94 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
module.exports = {
siteMetadata: {
title: `ARTSIDEOUT`,
description: `ARTSIDEOUT 2021 ENDURANCE: UTSC's largest one-day multidisciplinary arts festival`,
author: `Computer Science Enrichment Club`
},
flags: {
PRESERVE_FILE_DOWNLOAD_CACHE: true,
PRESERVE_WEBPACK_CACHE: true,
PARALLEL_SOURCING: true
},
plugins: [
`gatsby-plugin-react-helmet`,
`gatsby-plugin-image`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`
}
},
`gatsby-transformer-sharp`,
{
resolve: `gatsby-plugin-sharp`,
defaults: {
width: 600,
placeholder: 'BLURRED',
quality: 40
},
options: {
failOnError: false
}
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Artsideout`,
short_name: `Artsideout`,
start_url: `/`,
background_color: `#ED64A6`,
theme_color: `#ED64A6`,
display: `standalone`,
icon: `src/images/gatsby-icon.png` // This path is relative to the root of the site.
}
},
{
resolve: `gatsby-plugin-typescript`,
options: {
isTSX: true, // defaults to false
jsxPragma: `jsx`, // defaults to "React"
allExtensions: true // defaults to false
}
},
{
resolve: 'gatsby-source-graphcms',
options: {
// Your GraphCMS API endpoint. Available from your project settings.
endpoint:
// 'https://api-us-east-1.graphcms.com/v2/ckrl23npz27ng01xsbqgg6yih/master',
'https://api-us-east-1.graphcms.com/v2/cktyw4o6o3e9g01yu0geb5hki/master',
downloadLocalImages: true,
buildMarkdownNodes: true
}
},
{
resolve: `gatsby-plugin-disqus`,
options: {
shortname: `your-disqus-shortname`
}
},
'@chakra-ui/gatsby-plugin',
`gatsby-plugin-mdx`,
`gatsby-plugin-offline`
]
};