-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
111 lines (111 loc) · 3.66 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
/**
* @type {import('gatsby').GatsbyConfig}
*/
module.exports = {
siteMetadata: {
author: `@capivair`,
title: `Capivair`,
description: `O Capivair é um software de monitoramento de qualidade do ar. Ele é capaz de coletar dados de sensores de qualidade do ar e apresentá-los de forma intuitiva e acessível.`,
siteUrl: `https://capivair.netlify.app/`,
copyright: `© 2023 Capivair - Todos os direitos reservados`,
contributors: [
{
name: "Ayrton Santos Maia Medeiros",
email: "[email protected]",
github: "https://github.com/AyrtonMaia0",
linkedin: "https://www.linkedin.com/in/ayrton-maia-404489228/",
},
{
name: "Erika Vilas Boas dos Santos",
email: "[email protected]",
github: "https://github.com/ErikavbSantos",
linkedin: "https://www.linkedin.com/in/erikavbsantos/",
},
{
name: "Everton Gabriel Silva dos Anjos",
email: "[email protected]",
github: "https://github.com/Spatialcaver",
linkedin: "https://www.linkedin.com/in/everton-gabriel-088474176/",
},
{
name: "Gilmar Adrian de Souza Braz",
email: "[email protected]",
github: "https://github.com/brazadrian",
linkedin: "https://www.linkedin.com/in/brazadrian/",
},
{
name: "Karolayne da Silva Santos",
email: "[email protected]",
github: "https://github.com/Karolayne-silva",
linkedin: "https://www.linkedin.com/in/karolayne-silva-a0a49a1a1/",
},
{
name: "Lívia Vitória dos Santos Gomes",
email: "[email protected]",
github: "https://github.com/ViviSGG",
linkedin: "https://www.linkedin.com/in/lívia-vitória-6a5771230/",
},
{
name: "Maiara Evelyn Meneses Pereira",
email: "[email protected]",
github: "https://github.com/wildestmaii",
linkedin: "https://www.linkedin.com/in/wildestmaii/",
},
{
name: "Quézia Cassiano de Souza Silva",
email: "[email protected]",
github: "https://github.com/quezia-cassiano",
linkedin: "https://www.linkedin.com/in/queziacssilva/",
},
],
},
plugins: [
`gatsby-plugin-sass`,
`gatsby-plugin-image`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-sitemap`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
ignore: [`**/\.*`], // ignore files starting with a dot
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Capivair`,
short_name: `Capivair_sn`,
description: `O Capivair é um software de monitoramento de qualidade do ar. Ele é capaz de coletar dados de sensores de qualidade do ar e apresentá-los de forma intuitiva e acessível.`,
start_url: `/`,
background_color: `#ffffff`,
theme_color: `#D9D9D9`,
display: `fullscreen`,
icon: `src/images/capivair-icon-cf.png`, // This path is relative to the root of the site.
icon_options: {
purpose: `any maskable`,
},
},
},
{
resolve: "gatsby-source-rest-api",
options: {
endpoints: ["https://back-people.onrender.com/sensor"],
},
},
`gatsby-plugin-offline`,
{
resolve: `gatsby-omni-font-loader`,
options: {
enableListener: true,
preconnect: [
`https://fonts.googleapis.com`,
`https://fonts.gstatic.com`,
],
},
},
],
}