-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.config.js
72 lines (68 loc) · 2.02 KB
/
site.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
const CONFIG = {
// profile setting (required)
profile: {
name: "khakiD",
image: "/avatar.svg", // If you want to create your own notion avatar, check out https://notion-avatar.vercel.app
role: "Developer",
bio: "Moderation",
email: "bfwanso@naver.com",
linkedin: "dongho-shin-1b5147244",
github: "khakhid",
instagram: "",
},
projects: [
{
name: `dongho-log`,
href: "https://github.com/khakhid/khakidiggin-log",
},
],
// blog setting (required)
blog: {
title: "dongho-log",
description: "카키디 기술 블로그",
theme: "auto", // ['light', 'dark', 'auto']
},
// CONFIG configration (required)
link: "https://khakidiggin-log.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://raw.githubusercontent.com/khakhiD/khakidiggin-log/main/public/images/ogp-image.png", // The link to generate OG image, don't end with a slash
seo: {
keywords: ["Blog", "Website", "Notion"],
},
// notion configuration (required)
notionConfig: {
pageId: process.env.NOTION_PAGE_ID,
},
// plugin configuration (optional)
googleAnalytics: {
enable: true,
config: {
measurementId: process.env.NEXT_PUBLIC_GOOGLE_MEASUREMENT_ID || "",
},
},
googleSearchConsole: {
enable: false,
config: {
siteVerification: process.env.NEXT_PUBLIC_GOOGLE_SITE_VERIFICATION || "",
},
},
utterances: {
enable: true,
config: {
repo: "khakhid/khakidiggin-log",
"issue-term": "og:title",
label: "💬 Utterances",
},
},
cusdis: {
enable: false,
config: {
host: "https://cusdis.com",
appid: "", // Embed Code -> data-app-id value
},
},
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 }