-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog-config.ts
More file actions
28 lines (27 loc) · 1.17 KB
/
Copy pathblog-config.ts
File metadata and controls
28 lines (27 loc) · 1.17 KB
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
const config = {
title: 'Witch-Work', // Blog name
author: '김성현(Kim Sung Hyun)', // Your name
description:
'서강대학교에서 기계공학과 컴퓨터공학을 복수전공하였습니다. ' +
'흔히 `마녀`라는 닉네임을 씁니다. ' +
'어떤 대단한 뜻을 품고 사는 사람은 아닙니다. ' +
'그저 멋진 사람들이 내는 빛을 따라가다 보니 여기까지 왔고, ' +
'앞으로도 그렇게 살 수 있었으면 좋겠다고 생각하는 사람입니다. ' +
'이곳에 찾아오신 당신과도 함께할 수 있어 영광입니다.',
siteUrl: 'https://witch.work/',
social: {
github: 'witch-factory', // GitHub username
twitter: '', // Twitter username
facebook: '', // Facebook username
linkedin: '', // LinkedIn username
instagram: '', // Instagram username
},
comment: {
utterances: 'witch-factory/witch-blog', // Your GitHub repository
disqusShortName: '', // Disqus short name
},
thumbnail: 'src/assets/images/thumbnail.png',
icon: 'src/images/gatsby-icon.png', // path of blog icon
googleAnalytics: 'G-HBQKJEYL1K', // Google Analytics tracking id
};
export default config;