-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.config.js
79 lines (75 loc) · 2.37 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
73
74
75
76
77
78
79
const CONFIG = {
// profile setting (required)
profile: {
name: "kwondoll",
image: "/avatar1.svg", // If you want to create your own notion avatar, check out https://notion-avatar.vercel.app
role: "Web3 Master",
bio: "Web3 유용한 정보를 제공합니다.",
email: "[email protected]",
linkedin: "돌-권-648253208",
github: "hyukjune422",
instagram: "",
},
projects: [
{
name: `권돌 유튜브`,
href: "https://www.youtube.com/@%EA%B6%8C%EB%8F%8C?sub_confirmation=1",
},
{
name: `권돌 텔레그램`,
href: "https://t.me/kwondoll_2",
}
],
// blog setting (required)
blog: {
title: "권돌의 정보방",
description: "권돌의 정보방에 오신 것을 환영합니다!",
scheme: "dark", // 'light' | 'dark' | 'system'
},
// CONFIG configration (required)
link: "https://kwondoll.kro.kr",
since: 2020, // 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://kwondolllfg-ak3nk386q-kwondolls-projects.vercel.app", // The link to generate OG image, don't end with a slash
// 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: true,
config: {
siteVerification: process.env.NEXT_PUBLIC_GOOGLE_SITE_VERIFICATION || "",
},
},
naverSearchAdvisor: {
enable: false,
config: {
siteVerification: process.env.NEXT_PUBLIC_NAVER_SITE_VERIFICATION || "",
},
},
utterances: {
enable: false,
config: {
repo: process.env.NEXT_PUBLIC_UTTERANCES_REPO || "",
"issue-term": "og:title",
label: "💬 kwondoll",
},
},
cusdis: {
enable: true,
config: {
host: "https://cusdis.com",
appid: "9368b794-9b9e-4020-9c80-4a5f03953fa3", // 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)
revalidateTime: 60 * 1, // revalidate time for [slug], index
}
module.exports = { CONFIG }