forked from Chronoblog/gatsby-starter-chronoblog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
executable file
·88 lines (88 loc) · 2.59 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
module.exports = {
siteMetadata: {
siteTitle: 'Edin Citaku',
siteDescription: 'Blog of Edin Citaku',
siteImage: '/banner.png', // main image of the site for metadata
siteUrl: 'https://edincitaku.com',
pathPrefix: '/',
siteLanguage: 'en',
ogLanguage: `en_US`,
author: 'Edin Citaku', // for example - 'Ivan Ganev'
authorDescription: 'A passion driven Computer Science student', // short text about the author
avatar: '/avatar.jpg',
twitterSite: 'Edin_Citaku', // website account on twitter
twitterCreator: '', // creator account on twitter
social: [
{
icon: `at`,
url: `mailto:edin.citaku@gmail.com`,
},
{
icon: `twitter`,
url: `https://twitter.com/Edin_Citaku`
},
{
icon: `github`,
url: `https://github.com/EdinCitaku`
},
{
icon: `linkedin`,
url: `https://www.linkedin.com/in/edin-citaku-564000127/`
}
]
},
plugins: [{
resolve: 'gatsby-theme-chronoblog',
options: {
uiText: {
// ui text fot translate
feedShowMoreButton: 'show more',
feedSearchPlaceholder: 'search',
cardReadMoreButton: 'read more →',
allTagsButton: 'all tags'
},
feedItems: {
// global settings for feed items
limit: 50,
yearSeparator: true,
yearSeparatorSkipFirst: true,
contentTypes: {
links: {
beforeTitle: '🔗 '
}
}
},
feedSearch: {
symbol: '🔍'
}
}
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Chronoblog Gatsby Theme`,
short_name: `Chronoblog`,
start_url: `/`,
background_color: `#fff`,
theme_color: `#3a5f7d`,
display: `standalone`,
icon: `src/assets/favicon.png`
}
},
{
resolve: `gatsby-plugin-sitemap`
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
// replace "UA-XXXXXXXXX-X" with your own Tracking ID
trackingId: 'UA-192936292-2'
}
},
{
resolve: "gatsby-plugin-web-font-loader",
options: {
},
},
]
};