forked from morethanmin/morethan-log
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmorethan-log.config.js
63 lines (60 loc) · 1.72 KB
/
morethan-log.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
const CONFIG = {
// profile setting
profile: {
name: 'soo',
image: '/avatar.svg', // If you want to create your own notion avatar, check out https://notion-avatar.vercel.app
role: 'android developer',
bio: '그냥...',
email: 'ysgy112151@gmail.com',
github: 'ysgy1121',
linkedin: '',
instagram: '',
},
projects: [
{
name: 'ketchup',
href: 'https://play.google.com/store/apps/details?id=com.o2a.ketchup'
}
],
// blog setting
blog: {
title: 'heads-et',
description: 'welcome to heads-et',
theme: 'auto' // ['light', 'dark', 'auto']
},
// CONFIG configration
link: 'https://heads-et.vercel.app',
since: 2023, // If leave this empty, current year will be used.
lang: 'ko-KR', // ['en-US', 'zh-CN', 'zh-HK', 'zh-TW', 'ja-JP', 'es-ES', 'ko-KR']
ogImageGenerateURL: 'https://og-image-korean.vercel.app', // The link to generate OG image, don't end with a slash
seo: {
keywords: ['Blog', 'Website', 'Notion'],
},
// notion configuration
notionConfig: {
pageId: process.env.NOTION_PAGE_ID,
},
// plugin configuration
googleAnalytics: {
enable: false,
config: {
measurementId: '' // ex. G-9N3FE0117Q
}
},
googleSearchConsole: {
enable: false,
config: {
siteVerification: '' // ex. qvdR1gXMirk_DCUOKPgRnxu2x6fqSPrquYnEZZMjR9w
}
},
utterances: {
enable: false,
config: {
repo: 'morethanmin/morethan-log',
'issue-term': 'og:title',
label: '💬 Utterances',
}
},
isProd: process.env.VERCEL_ENV === 'production' // distinguish between development and production environment (ref: https://vercel.com/docs/environment-variables#system-environment-variables)
}
module.exports = CONFIG