-
Notifications
You must be signed in to change notification settings - Fork 105
/
site.config.js
76 lines (66 loc) · 3.13 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
module.exports = {
// where it all starts -- the site's root Notion page (required)
rootNotionPageId: '9f1e0dfab0a74c14955a2078f2e638eb',
// if you want to restrict pages to a single notion workspace (optional)
// (this should be a Notion ID; see the docs for how to extract this)
rootNotionSpaceId: null,
// basic site info (required)
name: '菜饼的技术博客',
domain: 'szufrank.top',
author: '菜饼同学',
// open graph metadata (optional)
description: '菜饼同学: 专注硬核技术,校招打法,个人认知体系成长',
socialImageTitle: '菜饼同学',
socialImageSubtitle: 'Hello World! 👋',
// social usernames (optional)
twitter: null,
github: 'frankcbliu',
wechatPublicName: '菜饼不菜',
wechatPublicURL: 'https://mp.weixin.qq.com/s?__biz=MzkxMzIyOTI1Mg==&mid=2247486027&idx=1&sn=2840f0b8cfdc982b9095dd18ec9892e5',
notionPublic: 'https://frankcbliu.notion.site/6a76fdd9ec6d4ae2855aa790d620eec4',
// default notion icon and cover images for site-wide consistency (optional)
// page-specific values will override these site-wide defaults
defaultPageIcon: null,
defaultPageCover: null,
defaultPageCoverPosition: 0.5,
// image CDN host to proxy all image requests through (optional)
// NOTE: this requires you to set up an external image proxy
imageCDNHost: null,
// Utteranc.es comments via GitHub issue comments (optional)
utterancesGitHubRepo: 'frankcbliu/awesome-nextjs-notion-blog',
utterancesGitHubLabel: '博客评论',
// whether or not to enable support for LQIP preview images (optional)
// NOTE: this requires you to set up Google Firebase and add the environment
// variables specified in .env.example
isPreviewImageSupportEnabled: false,
// set null to remove from year
copyRightFromYear: 2019,
// map of notion page IDs to URL paths (optional)
// any pages defined here will override their default URL paths
// example:
//
pageUrlOverrides: {
// '/os': 'ff8a4877c04f42eda0d050547c117ea5',
// '/os-introduction': '68390e1112d749debb748387a82ebd9f',
// '/create-notion-blog': 'Notion-40362e4b8973491bbbc147237f1e9227',
// '/create-vuepress-blog':'vuepress-github-pagegitee-e4c85fe845104c5aa004a19df445f29e',
// '/c++': 'c-6cfc812927c44a688e874d6212265b30',
// '/java': 'java-a0975c0ad4fb473ca8c2a803a7813a4d',
// '/i-am-cai-bing-tong-xue': '8f65e44b7a5a47788fdcc8dde9522bfa',
// '/redis':'redis-df0a05f97c9a462e83a3ecf5d0066578',
// '/common-question': '8ea9f59839d04750b08fa7e13045ab08',
// '/algorithm-sort': '7f7769466b5847dab94716dc0d9c1ac4',
// '/algorithm-sort-js' : 'JavaScript-f5b50f39a66645ec97dcd409497ed2a9',
// '/algorithm-binary-tree-traversal' :'07df0ddf43664a758fb4725070b71854',
// '/network': '926b875211b44f978d39200f8d39ef1d',
// '/database': '337b1694b9344af9a424136b87827ad3',
// '/advanced-algorithm': '854a54c0567944488842e3f01faf6ab3',
// '/frontend': '83dc1ec0083a4bdfbe7d3ac6a5b07664',
// '/post-list': '651765de6a0f4a729f9186f26381aef3'
},
showPageAsideSocials: true,
footCounterList: [
'9f1e0dfab0a74c14955a2078f2e638eb',
'0a134da6-916f-4e46-979d-2c675f9acdb9'
]
}