-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
40 lines (40 loc) · 973 Bytes
/
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
module.exports = {
siteMetadata: {
title: `botdobom`,
description: `tecnologia acessível`,
siteUrl: `https://quebradev.com.br/`,
author: `@eptaccio`
},
plugins: [
`gatsby-plugin-react-helmet`,
`gatsby-plugin-sass`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `assets`,
path: `${__dirname}/src/assets`
}
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `gatsby-landing-page-starter`,
short_name: `landing`,
start_url: `/`,
background_color: `#ffffff`,
theme_color: `#675CE2`,
display: `standalone`,
icon: `src/assets/logo.svg` // This path is relative to the root of the site.
}
},
`gatsby-plugin-sitemap`,
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: 'UA-170421069-1'
}
}
]
}