-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-config.js
executable file
·91 lines (91 loc) · 2.37 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
module.exports = {
siteMetadata: {
siteTitle: 'Chronoblog Hacker Starter',
siteDescription: 'Starter for Gatsby Theme Chronoblog',
siteImage: '/banner.png', // main image of the site for metadata
siteUrl: 'https://chronoblog-hacker.now.sh/',
pathPrefix: '/',
siteLanguage: 'en',
ogLanguage: `en_US`,
author: 'Site Author', // for example - 'Ivan Ganev'
authorDescription: 'short author description', // short text about the author
avatar: '/avatar.jpg',
twitterSite: '', // website account on twitter
twitterCreator: '', // creator account on twitter
social: [
{
icon: `at`,
url: `mailto:[email protected]`,
},
{
icon: `twitter`,
url: `https://twitter.com/ganevru`,
},
{
icon: `github`,
url: `https://github.com/Chronoblog/gatsby-theme-chronoblog`,
},
{
icon: `node-js`,
url: `https://www.npmjs.com/package/gatsby-theme-chronoblog`,
},
],
},
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-XXXXXXXXX-X',
},
},
{
resolve: `gatsby-plugin-disqus`,
options: {
// replace "chronoblog-hacker" with your own disqus shortname
shortname: `chronoblog-hacker`,
},
},
],
};