-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
42 lines (41 loc) · 921 Bytes
/
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
'use strict';
module.exports = {
url: 'https://kwoncharles.netlify.com',
pathPrefix: '/',
title: 'Kwoncharles Blog',
subtitle: '기술에 대해 이야기하고, 더 나은 삶에 대해 이야기합니다.',
copyright: '© Powered by gatsby-starter-lumen and All rights reserved by Kwoncheol ',
disqusShortname: 'kwoncheol',
postsPerPage: 4,
googleAnalyticsId: 'G-MEJPH4ECS6',
menu: [
{
label: 'About me',
path: '/pages/about'
},
{
label: 'Post',
path: '/'
},
{
label: 'Tags',
path: '/tags',
}
// {
// label: 'Contact me',
// path: '/pages/contacts'
// }
],
author: {
name: '신 권철 (Charles)',
photo: '/charles.jpeg',
bio: '',
contacts: {
email: 'hello@kwoncheol.me',
linkedin: 'kwoncheolshin',
twitter: 'KwonCharles_',
github: 'kwoncharles'
// rss: '#'
}
}
};