-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-config.js
58 lines (57 loc) · 1.98 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
require('dotenv').config()
module.exports = {
siteMetadata: {
title: `techvagas.cc`,
heroHeadline: 'Vagas de Tecnologia',
description: `Uma iniciativa que tem por objetivo trazer a esperança de um novo emprego, mesmo em meio à incerteza da pandemia.`,
author: `Edgard Kozlowski`,
thumbnail: 'src/images/vagascc.png',
formUrl: 'https://airtable.com/shrcFKFGDq6WcGZkJ',
footer: 'Projeto desenvolvido por <a href="https://edkf.com.br" target="_blank">@edkf</a>. Agradecimento especial à <a href="https://kaisermann.me/" target="_blank">@kiwistian</a> e <a href="https://www.linkedin.com/in/leilacangussu/" target="_blank">@leilacangussu</a>. <br /> Para reportar um erro, mandar duvidas ou sugestões, enviar email para <a href="mailto:[email protected]">[email protected]</a>.'
},
plugins: [
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `gatsby-starter-default`,
short_name: `starter`,
start_url: `/`,
background_color: `#000`,
theme_color: `#000`,
display: `minimal-ui`,
icon: `src/images/vagas-icon.png`, // This path is relative to the root of the site.
},
},
{
resolve: `gatsby-source-airtable`,
options: {
apiKey: process.env.API_KEY, // may instead specify via env, see below
concurrency: 5, // default, see using markdown and attachments for more information
tables: [
{
baseId: process.env.BASE_ID,
tableName: process.env.TABLE_NAME,
createSeparateNodeType: false,
separateMapType: false,
}
]
}
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: "UA-54127697-7",
},
}
]
}