-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
42 lines (42 loc) · 1.26 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
module.exports = {
siteMetadata: {
title: "Portfolio v3",
description: "Javascript FullStack Developer",
author: "@amanhimself",
siteUrl: `http://www.benhartouz.com`
},
plugins: [
`gatsby-plugin-react-helmet`,
`gatsby-plugin-styled-components`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: "Ben hartouz Portfolio",
short_name: "Mohamed Ben hartouz",
start_url: "/",
background_color: "#69359c",
theme_color: "#69359c",
display: "minimal-ui",
icons: [
{
src: `/src/assets/favicon.ico`,
sizes: `32x32`,
type: `image/ico`
}
]
}
},
`gatsby-plugin-offline`,
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: "UA-127170539-1",
// Setting this parameter is optional (requried for some countries such as Germany)
anonymize: true
}
},
{
resolve: `gatsby-plugin-sitemap`
}
]
};