-
Notifications
You must be signed in to change notification settings - Fork 2
/
gatsby-config.js
executable file
·98 lines (97 loc) · 2.36 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
require(`dotenv`).config({
path: `.env`,
});
module.exports = {
siteMetadata: {
siteTitle: `Edvins Antonovs`,
siteTitleAlt: `Edvins Antonovs`,
siteHeadline: `Edvins Antonovs - My digital garden`,
siteUrl: `https://edvins.io/`,
siteDescription: `My digital garden`,
siteLanguage: `en`,
siteImage: `/banner.png`,
author: `@edvinsantonovs`,
},
plugins: [
{
resolve: `@lekoarts/gatsby-theme-minimal-blog`,
options: {
tagsPath: '/blog/tags',
navigation: [
{
title: `Blog`,
slug: `/blog`,
},
{
title: `About`,
slug: `/about`,
},
{
title: `Projects`,
slug: `/projects`,
},
{
title: `Books`,
slug: `/books`,
},
{
title: `Self-education`,
slug: `/self-education`,
},
],
externalLinks: [
{
name: `Twitter`,
url: `https://twitter.com/edvinsantonovs/`,
},
{
name: `Telegram`,
url: `https://t.me/edvins/`,
},
{
name: `GitHub`,
url: `https://github.com/ummahusla`,
},
{
name: `LinkedIn`,
url: `https://www.linkedin.com/in/edvinsantonovs/`,
},
],
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: process.env.GOOGLE_ANALYTICS_ID,
},
},
`gatsby-plugin-sitemap`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Edvins's Blog about software development and side hustle`,
short_name: `edvins-io`,
description: `Edvins\'s Blog - Blog about software development and side hustle`,
start_url: `/`,
background_color: `#fff`,
theme_color: `#6B46C1`,
display: `standalone`,
icons: [
{
src: `/android-chrome-192x192.png`,
sizes: `192x192`,
type: `image/png`,
},
{
src: `/android-chrome-256x256.png`,
sizes: `256x256`,
type: `image/png`,
},
],
},
},
`gatsby-plugin-offline`,
`gatsby-plugin-netlify`,
// `gatsby-plugin-webpack-bundle-analyser-v2`,
],
};