-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgatsby-config.js
160 lines (159 loc) · 3.88 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
require('dotenv').config({
path: `.env.${process.env.NODE_ENV}`,
});
module.exports = {
siteMetadata: {
title: 'Cobuild Lab | Software development in Miami, Florida',
seoTitle: 'Software development in Miami, Florida', // site title ouput --> Cobuild Lab | Software development in Miami, Florida
author: '@cobuildlab',
description: 'Software development in Miami, Florida',
siteUrl: process.env.URL,
twitterHandle: '@cobuildlab',
},
plugins: [
`gatsby-plugin-sass`,
`gatsby-plugin-smoothscroll`,
`gatsby-plugin-styled-components`,
`gatsby-plugin-preact`,
{
resolve: 'gatsby-plugin-zopfli',
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/src/pages`,
name: 'pages',
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/src/assets/images`,
name: 'images',
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/src/assets/2021/images`,
name: 'images',
},
},
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
{
resolve: `gatsby-remark-images`,
options: {
maxWidth: 720,
linkImagesToOriginal: true,
},
},
{
resolve: `gatsby-remark-responsive-iframe`,
options: {
wrapperStyle: `margin-bottom: 1.0725rem`,
},
},
'gatsby-remark-component',
'gatsby-remark-copy-linked-files',
],
},
},
`gatsby-plugin-image`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
{
resolve: `gatsby-plugin-brotli`,
options: {
extensions: ['css', 'html', 'js', 'svg'],
level: 4,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Cobuild Lab`,
short_name: `Cobuild`,
start_url: `/`,
background_color: `#ffffff`,
theme_color: `#e76c29`,
display: `minimal-ui`,
icon: `src/resources/icocobuildlab.png`,
},
},
`gatsby-plugin-react-helmet`,
{
resolve: 'gatsby-plugin-mailchimp',
options: {
endpoint:
'https://4geeks.us5.list-manage.com/subscribe/post?u=05c88e36fa1e947ec0bf94453&id=02c69b216a', // see instructions section below
},
},
`gatsby-remark-copy-linked-files`,
`gatsby-plugin-sitemap`,
{
resolve: `gatsby-plugin-google-tagmanager`,
options: {
id: 'GTM-PFDRR5V',
},
},
`gatsby-transformer-json`,
{
resolve: `gatsby-source-filesystem`,
options: {
path: `./src/data/`,
},
},
{
resolve: `@cobuildlab/gatsby-source-8base`,
options: {
url: process.env.URL_8BASE,
apiToken: process.env.TOKEN_8BASE_API,
workspaceId: process.env.WORKSPACE_ID_8BASE,
graphqlQuery: `
query{
postsList {
items{
id
title
content
slug
tag
description
category
createdAt
readingTime
imageUrl{
items{
filename
downloadUrl
createdAt
}
}
}
count
}
careersList {
items {
id
title
description
requirements
jobProfile
responsibilities
modality
time
active
slug
type
createdAt
}
}
}
`,
},
},
],
};