-
Notifications
You must be signed in to change notification settings - Fork 2
/
site.config.ts
46 lines (38 loc) · 1.27 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
import { siteConfig } from './lib/site-config';
export default siteConfig({
rootNotionPageId: '5e19b09eec9e43c5b4c23031d41fea81',
// 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: undefined,
// basic site info (required)
name: 'Svelte Notion Blog',
domain: 'svelte-noiton.test.com',
author: 'svelte-noiton',
// open graph metadata (optional)
description: 'svelte notion render',
// 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,
isSearchEnabled: undefined,
// pageUrlOverrides: {
// '/foo': '067dd719a912471ea9a3ac10710e7fdf',
// '/bar': '0be6efce9daf42688f65c76b89f8eb27'
// }
pageUrlOverrides: undefined,
// whether to use the default notion navigation style or a custom one with links to
// important pages
navigationStyle: 'custom',
// navigationStyle: 'custom',
// navigationLinks: [
// {
// title: 'About',
// pageId: 'f1199d37579b41cbabfc0b5174f4256a'
// },
// {
// title: 'Contact',
// pageId: '6a29ebcb935a4f0689fe661ab5f3b8d1'
// }
// ]
});