-
Notifications
You must be signed in to change notification settings - Fork 2
/
gatsby-config.js
188 lines (188 loc) · 4.26 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
module.exports = {
siteMetadata: {
title: 'Lightning in a Bot',
siteUrl: 'https://lightninginabot.com',
description: 'The latest Lightning in a Bot posts coming at you from Los Angeles, California.',
clients: [
{
name: 'The Social Life',
image: 'the_social_life.png',
url: 'https://thesociallife.com/',
},
{
name: 'Shoptiques',
image: 'shoptiques.png',
url: 'https://www.shoptiques.com/',
},
{
name: 'United Way of Greater Los Angeles',
image: 'uwgla.png',
url: 'https://www.unitedwayla.org/',
},
{
name: 'Wellen',
image: 'wellen.png',
url: 'https://wellensurf.com/',
},
{
name: 'Ergon',
image: 'ergon.png',
url: 'http://www.ergon-bike.com/',
},
{
name: 'Pour This',
image: 'pour_this.png',
url: 'https://www.pour-this.com/',
},
{
name: 'Western Rise',
image: 'western_rise.png',
url: 'https://westernrise.com/',
},
],
productData: [
{
name: 'Shoppy Bot',
description: 'Shoppy Bot is a Shopify app that gives store owners a unique data reporting solution. The project\'s goal was to give businesses a more user-friendly and time-saving user experience over traditional reporting tools by leveraging state-of-the-art natural language understanding to process report requests.',
url: 'https://shoppybot.com',
image: 'shoppybot.png',
tags: ['shoppy bot', 'natural language understanding'],
},
],
serviceData: {
services: [
{
name: 'Web Apps',
description: '',
},
{
name: 'Shopify Apps',
description: '',
},
{
name: 'Data Management',
description: '',
},
{
name: 'Data Integrations',
description: '',
},
{
name: 'CMS Development',
description: '',
},
{
name: 'Machine Learning',
description: '',
},
{
name: 'Process Consulting',
description: '',
},
{
name: 'Process Automation',
description: '',
},
{
name: 'Project Management',
description: '',
},
],
tools: [
{
name: 'Node.js / Javascript'
},
{
name: 'Python'
},
{
name: 'HTML5'
},
{
name: 'CSS3'
},
{
name: 'Django Web Framework'
},
{
name: 'Flask Web Framework'
},
{
name: 'Express Web Framework'
},
{
name: 'React JS'
},
{
name: 'Redux JS'
},
{
name: 'PostgreSQL'
},
{
name: 'MongoDB'
},
{
name: 'AWS'
},
{
name: 'Heroku'
}
]
}
},
pathPrefix: '/',
plugins: [
{
resolve: 'gatsby-source-filesystem',
options: {
path: `${__dirname}/src/pages`,
name: 'pages',
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'client_logos',
path: `${__dirname}/src/images/client_logos/formatted`,
},
},
{
resolve: 'gatsby-transformer-remark',
options: {
plugins: [
{
resolve: 'gatsby-remark-images',
options: {
maxWidth: 640,
},
},
{
resolve: 'gatsby-remark-responsive-iframe',
options: {
wrapperStyle: 'margin-bottom: 1.0725rem',
},
},
"gatsby-remark-prismjs",
"gatsby-remark-copy-linked-files",
"gatsby-remark-smartypants",
],
},
},
'gatsby-transformer-sharp',
'gatsby-plugin-sharp',
{
resolve: 'gatsby-plugin-google-analytics',
options: {
trackingId: 'UA-80332066-1',
head: true,
},
},
{
// RSS feed
resolve: 'gatsby-plugin-feed'
},
'gatsby-plugin-offline',
'gatsby-plugin-react-helmet',
],
}