-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgatsby-config.js
More file actions
39 lines (39 loc) · 935 Bytes
/
gatsby-config.js
File metadata and controls
39 lines (39 loc) · 935 Bytes
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
module.exports = {
siteMetadata: {
title: 'Positiva(+)',
author: 'positivaapp',
siteUrl: 'https://positiva-app.com',
image: '/cover.jpg',
description:
'Una app segura para personas con VIH, para monitorear su salud y encontrar apoyo.',
},
plugins: [
{
resolve: `gatsby-plugin-prefetch-google-fonts`,
options: {
fonts: [
{
family: `DM Sans`,
subsets: [`latin`],
variants: [`400`, `500`, `700`],
},
],
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Postiva(+)`,
short_name: `Positiva(+)`,
start_url: `/`,
background_color: `#fff`,
theme_color: `#fff`,
display: `minimal-ui`,
},
},
`gatsby-plugin-offline`,
`gatsby-plugin-styled-components`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-sitemap`,
],
}