-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
49 lines (49 loc) · 1.23 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: {
author: `Nitish Mehrotra`,
description: `Building a 🧠 Developer's Brain around Community, Tools and their day-to-day workflows`,
head: `🧠 Developers Brain - Digital garden of mental models`,
image: "assets/icons/icon.png",
title: `🧠 Developers Brain - Digital garden of mental models`,
twitterUsername: "@Nitish_Mehrotra",
},
plugins: [
{
resolve: `gatsby-plugin-sass`,
},
{
resolve: `gatsby-plugin-manifest`,
options: {
icon: `assets/icons/icon.png`,
},
},
{
resolve: `gatsby-theme-garden`,
options: {
contentPath: `${__dirname}/content`,
rootNote: `/home`,
ignore: [
"./.cache/**",
"./.git/**",
"./.vscode/**",
"./assets/**",
"./node_modules/**",
"./public/**",
],
},
},
{
resolve: `gatsby-plugin-google-fonts`,
options: {
fonts: [
`Nunito Sans\:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i`,
`Inter\:100,200,300,400,500,600,700,800,900`,
],
display: "swap",
},
},
],
siteMetadata: {
title: `🧠 Developers' Brain`,
},
}