forked from morethanmin/morethan-log
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmorethan-log.config.js
65 lines (62 loc) · 1.86 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
64
65
const CONFIG = {
// profile setting
profile: {
name: 'morethanmin',
image: '/avatar.svg', // If you want to create your own notion avatar, check out https://notion-avatar.vercel.app
discription: 'frontend developer',
linkedin: 'morethanmin',
email: 'morethanmin.dev@gmail.com',
github: 'morethanmin',
instagram: 'more_dev_min',
},
projects: [
{
name: 'Untilled',
href: 'https://untilled.web.app'
}
],
// blog setting
blog: {
title: 'morethan-log',
description: 'welcome to morethan-log!',
theme: 'auto' // ['light', 'dark', 'auto']
},
// CONFIG configration
link: 'https://morethan-log.vercel.app',
since: 2022, // If leave this empty, current year will be used.
lang: 'en-US', // ['en-US', 'zh-CN', 'zh-HK', 'zh-TW', 'ja-JP', 'es-ES', 'ko-KR']
postsPerPage: 10,
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: 'fea3665b143e4f35b9ebeb4f1248ac2f',
// if you prefer not to make your database public, use this!!!
accessToken: process.env.NOTION_ACCESS_TOKEN
},
// plugin configuration
googleAnalytics: {
enable: false,
config: {
measurementId: '' // ex. G-9N3FE0117Q
}
},
googleSearchConsole: {
enable: false,
config: {
siteVerification: '' // ex. qvdR1gXMirk_DCUOKPgRnxu2x6fqSPrquYnEZZMjR9w
}
},
utterances: {
enable: true,
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