-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
executable file
·49 lines (49 loc) · 1.24 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
module.exports = {
siteMetadata: {
title: "Vijay Sehgal || Home",
description:
"My mission as a developer is to contribute to applications that empower and motivate lives. Let's change the world together.",
siteUrl: "https://www.vijaysehgal.com",
author: "vijaysehgal",
twitter: "vijaysehgal4u"
},
plugins: [
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Vijay Sehgal`,
short_name: `VijaySehgal`,
start_url: `/`,
background_color: `#337ab7`,
theme_color: `#337ab7`,
display: `fullscreen`,
// icon: `src/static/logo/favicon.png` // This path is relative to the root of the site.
}
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `data`,
path: `${__dirname}/src/data/`
}
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/src/images`,
name: `images`
}
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: "UA-102315844-1",
head: true
}
},
`gatsby-plugin-sitemap`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
`gatsby-plugin-react-helmet`
]
};