-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
79 lines (78 loc) · 2.4 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
module.exports = {
siteMetadata: {
title: `Sudaraka Jayathilaka`,
name: `Sudaraka Jayathilaka`,
siteUrl: `https://sudaraka94.com`,
description: `I Sudaraka Jayathilaka, a programmer living in Singapore. I blog about experiences navigating through my career as a Software Engineer.`,
hero: {
heading: `Hello 👋, I'm Sudaraka Jayathilaka. \nWelcome to my blog ☕`,
maxWidth: 800,
},
social: [
{
name: `mailto`,
url: `mailto:sudarakayasindu@gmail.com`
},
{
name: `github`,
url: `https://github.com/sudaraka94`,
},
{
name: `linkedin`,
url: `https://www.linkedin.com/in/sudarakajayathilaka/`,
},
{
name: `twitter`,
url: `https://x.com/sudaraka94`,
},
{
name: `medium`,
url: `https://medium.com/@sudarakayasindu`
},
],
},
plugins: [
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/src/images/`,
},
},
{
resolve: "@sudaraka94/gatsby-theme-novela",
options: {
contentPosts: "content/posts",
contentAuthors: "content/authors",
basePath: "/",
authorsPage: false,
sources: {
local: true,
// contentful: true,
},
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Sudaraka Jayathilaka`,
short_name: `Sudaraka Jayathilaka`,
start_url: `/`,
background_color: `#fff`,
theme_color: `#fff`,
display: `standalone`,
icon: `src/images/sj.png`,
},
},
{
resolve: `gatsby-plugin-google-gtag`,
options: {
// You can add multiple tracking ids and a pageview event will be fired for all of them.
trackingIds: [
"G-N13ZX3B36R", // Google Analytics / GA
]
}
}
],
};