-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
site.config.ts
76 lines (66 loc) · 2.53 KB
/
site.config.ts
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
import { siteConfig } from './lib/site-config'
export default siteConfig({
// the site's root Notion page (required)
// rootNotionPageId: 'niviki-com-t-do-t-i-ch-nh-10f5e54221eb4b059bc5b5305da949ba',
rootNotionPageId: 'LeanBiz-VN-Kinh-doanh-tinh-g-n-th-i-i-s-a85a29ad62cb4d7fac270e9f7bde4eab',
// 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: 'demo - demosite',
domain: 'demo.vn',
author: 'Th',
// open graph metadata (optional)
description: 'demo des',
// social usernames (optional)
twitter: '#',
// github: 'transitive-bullshit',
linkedin: '#',
facebook: '#',
// mastodon: '#', // optional mastodon profile URL, provides link verification
// newsletter: '#', // optional newsletter URL
youtube: '#', // optional youtube channel name or `channel/UCGbXXXXXXXXXXXXXXXXXXXXXX`
// 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,
// whether or not to enable support for LQIP preview images (optional)
isPreviewImageSupportEnabled: true,
// whether or not redis is enabled for caching generated preview images (optional)
// NOTE: if you enable redis, you need to set the `REDIS_HOST` and `REDIS_PASSWORD`
// environment variables. see the readme for more info
isRedisEnabled: false,
// map of notion page IDs to URL paths (optional)
// any pages defined here will override their default URL paths
// example:
//
pageUrlOverrides: {
// '/hoa-don-dien-tu-voi-blockchain-p1/': '/9dd30a7b68af4b40a8ad3d6d9cb845f0',
// '/giai-phap-hoa-don-dien-tu-voi-blockchain-phan-2-the-mvp': '/9dd30a7b68af4b40a8ad3d6d9cb845f0',
// '/phong-van-business-analyst-ba-ky-su-phan-1': '/60ebc3f1d53646119f703fe5d13df633'
},
// pageUrlOverrides: null,
// whether to use the default notion navigation style or a custom one with links to
// important pages
// navigationStyle: 'default',
navigationStyle: 'custom',
navigationLinks: [
{
title: 'Blog',
pageId: '59432e1a0cdf4effbb402701deff00a9'
},
{
title: 'Products',
pageId: '93331fa2964045248502bd314019c917'
},
{
title: 'Tools',
pageId: '8e761b9e7d1b4db1ae76bbc1e4f9aa1f'
},
{
title: 'About',
pageId: '38979ee661fc4a5d8af2d7c32319ee0d'
}
]
})