-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgatsby-config.js
109 lines (107 loc) · 2.86 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
const mdxFeed = require("gatsby-mdx/feed");
module.exports = {
siteMetadata: {
siteUrl: 'https://jsconfbp.com',
title: 'JSConf Budapest 2019',
description: 'JSConf Budapest 2019, September 26-27, Budapest, Hungary. Tickets from €311, including free workshops, inclusive catering and barista coffee!',
keywords: 'jsconf, javascript, jsconfbp, conference, budapest, jsconf budapest, diversity, inclusivity, community',
twitter: '@jsconfbp'
},
plugins: [
`gatsby-mdx`,
{
resolve:`gatsby-source-filesystem`,
options:{
name:`speaker-images`,
path: `${__dirname}/speakers/images`,
ignore: [ `**/\.*` ], // ignore files starting with a dot
}
},
{
resolve:`gatsby-source-filesystem`,
options:{
name:`sponsor-images`,
path: `${__dirname}/static/posts`,
ignore: [ `**/\.*` ], // ignore files starting with a dot
}
},
{
resolve:`gatsby-source-filesystem`,
options:{
name:`sponsor-images`,
path: `${__dirname}/static/sponsors`,
ignore: [ `**/\.*` ], // ignore files starting with a dot
}
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "workshops",
path: `${__dirname}/workshops`,
ignore: [`**/\.*`], // ignore files starting with a dot
}
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "speakers",
path: `${__dirname}/speakers`,
ignore: [`**/\.*`], // ignore files starting with a dot
}
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "updates",
path: `${__dirname}/updates`
}
},
'gatsby-plugin-force-trailing-slashes',
'gatsby-plugin-react-helmet',
{
resolve: "gatsby-source-filesystem",
options: {
name: "team",
path: `${__dirname}/src/images/team`,
ignore: [`**/\.*`], // ignore files starting with a dot
}
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
'gatsby-transformer-sharp',
'gatsby-plugin-sharp',
{
resolve: `gatsby-plugin-manifest`,
options: {
name: 'jsconf-budapest',
short_name: 'jsconfbp',
start_url: '/',
background_color: '#663399',
theme_color: '#663399',
display: 'minimal-ui',
icon: 'src/images/logo.png', // This path is relative to the root of the site.
},
},
'gatsby-plugin-offline',
'gatsby-plugin-sass',
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: "UA-58489830-1",
},
},
{
resolve: 'gatsby-plugin-react-svg',
options: {
rule: {
include: `${__dirname}/src/images`,
}
}
},
],
}