forked from tomvej/alchymista-instruktori-cz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
99 lines (98 loc) · 2.89 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
const sass = require('sass');
module.exports = {
siteMetadata: {
title: 'Alchymistův učeň',
subtitle: 'Přijeď hledat svůj kámen mudrců!',
description: 'Přijeď hledat to, co tě ve tvém životě naplňuje – svůj kámen mudrců.',
author: 'Tvrz',
contact: '[email protected]',
fbEventId: '151196389586304',
lang: 'cs',
year: 2020,
basicInfo: [
{label: 'Věk', value: '18+'},
{label: 'Termín', value: '14.\u201323. 8. 2020'},
{label: 'Cena', value: 'od 4500 Kč'},
],
formAction: 'https://docs.google.com/forms/u/0/d/e/1FAIpQLSeJFAgRYXMRshSbqp5p_1Vwu7Wuye8VDzxMo8OwHM9cxWRHjA/formResponse',
formFields: {
name: 'entry.1528101418',
email: 'entry.64509220',
message: 'entry.1336304104',
},
},
plugins: [
'gatsby-plugin-react-helmet',
{
resolve: 'gatsby-plugin-google-analytics',
options: {
trackingId: 'UA-139615876-2',
anonymize: true,
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'images',
path: `${__dirname}/src/images`,
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'text',
path: `${__dirname}/src/text`,
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'team',
path: `${__dirname}/src/team`,
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'gallery',
path: `${__dirname}/src/gallery`,
},
},
'gatsby-transformer-sharp',
'gatsby-plugin-sharp',
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'Alchymistův učeň',
short_name: 'Alchymistův učeň',
start_url: '/',
background_color: '#cfba9b',
theme_color: '#3D2B1F',
display: 'minimal-ui',
icon: 'src/images/squared-circle.svg',
},
},
{
resolve: 'gatsby-plugin-sass',
options: {
implementation: sass,
},
},
{
resolve: 'gatsby-transformer-remark',
options: {
plugins: ['remark-czech-preprocessor'],
},
},
{
resolve: 'gatsby-plugin-google-fonts',
options: {
fonts: [
'Eagle Lake',
'Proza Libre',
],
display: 'swap',
},
},
],
};