-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
executable file
·81 lines (77 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
71
72
73
74
75
76
77
78
79
80
81
module.exports = {
siteMetadata: {
title: `Wednesday Isolationists`,
description: `A collective of UK Artists had no name before the Covid Lockdown, but with this new way of working from home they became the 'Wednesday Isolationists'`,
author: `TWGuy <[email protected]>`,
siteUrl: 'https://wednesday-isolationists.co.uk',
},
plugins: [
`gatsby-plugin-advanced-sitemap`,
'gatsby-plugin-robots-txt',
`gatsby-plugin-react-helmet`,
`gatsby-transformer-remark`,
// `gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-transformer-sharp`,
options: {
// The option defaults to true
checkSupportedExtensions: false,
},
},
{
resolve: `gatsby-plugin-preload-fonts`,
options: {
crossOrigin: `use-credentials`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `metad`,
path: `${__dirname}/src/metad`,
},
},
{
resolve: `gatsby-plugin-styled-components`,
options: {
// Add any options here
},
},
{
resolve: `gatsby-plugin-typography`,
options: {
pathToConfigModule: `src/utils/typography`,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `WednesdayIsolationists`,
short_name: `WednesdayIsolationists`,
start_url: `/`,
background_color: `#282c34`,
theme_color: `#282c34`,
display: `standalone`,
// icons: [
// {
// src: 'src/icons/gatsby-icon.png',
// type: 'image/png',
// sizes: '196x196',
// purpose: 'any maskable',
// },
// ],
icon: 'src/icons/gatsby-icon.png',
crossOrigin: `use-credentials`,
},
},
`gatsby-plugin-offline`, // make sure to put this last in the array
],
};