-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
32 lines (31 loc) · 1.01 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
const data = require('./data/siteConfig');
module.exports = {
siteMetadata: {
title: data.myName,
...data,
},
plugins: [
{
resolve: `gatsby-plugin-typography`,
options: {
pathToConfigModule: `./src/utils/typography.js`
}
},
'gatsby-plugin-react-helmet',
{
resolve: `gatsby-plugin-manifest`,
options: {
name: "Human", // your name
short_name: "Human", // your shorter name
start_url: "/",
background_color: "#000",
theme_color: "#000",
display: "standalone",
icon: "./static/profile.jpg", // your profile picture
// if your file is called human.png, replace that text with ./static/human.png
// the ./static/ is very important, it tells Gatsby which directory to find your profile picture
},
},
'gatsby-plugin-offline',
]
};