-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
79 lines (78 loc) · 1.97 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
const path = require(`path`)
module.exports = {
siteMetadata: {
title: `D.I.Y. as Privilege`,
subtitle: `13 Point Manifesto for Musicians`,
author: `Richard Phoenix`,
description: `I wrote a something about what I’ve learnt over the past 13 years being involved with supporting people with learning disabilities to make and share music. Called it DIY as Privilege - 13 Point Manifesto For Musicians`,
keywords: [
`Disability`,
`Social Model`,
`Accessibility`,
`Punk`,
`Rock`,
`Rap`,
`Heart n Soul`,
`Carousel`,
`Daniel Wakeford`,
`Learning Disabilities`,
`Learning Difficulties`,
`Autism`,
`Neurodiversity`,
`Music`,
`DIY Space For London`,
`Pertti Kurikan Nimipaivat`,
`Beat Express`,
`Heavy Load`,
`Stay Up Late`,
`Fun`,
`Disability Music`,
`Disability Music Scene`,
`The Rock House`,
`Brighton`,
`London`,
`Leeds`,
`Deptford`,
`People with disabilities`,
`Manifesto`,
`John Cage`,
`Studio of the Immaculate Heart`,
`Thirteen`,
`Richard Phoenix`,
`Rich Phoenix`,
`artist`,
`Charles Hayward`,
`Spaces of Making`,
],
lang: `en`,
siteUrl: `https://www.diy-as-privilege.co.uk`,
social: {
instagram: `richardjphoenix`,
twitter: `richardjphoenix`,
github: `robphoenix`,
},
developer: {
name: `Rob Phoenix`,
siteUrl: `https://github.com/robphoenix/diy-as-privilege`,
},
},
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: path.join(__dirname, `src`, `assets`, `images`),
},
},
`gatsby-plugin-styled-components`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: 'UA-144728290-1',
},
},
],
}