forked from transitive-bullshit/nextjs-notion-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
site.config.js
50 lines (41 loc) · 1.71 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
module.exports = {
// where it all starts -- the site's root Notion page (required)
// https://www.notion.so/gittom/Pressing-Progress-dd24e42cee214b28badab05d98f6f103
rootNotionPageId: 'dd24e42cee214b28badab05d98f6f103',
// 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: 'Pressing Progress',
domain: 'pressingprogress.com',
author: 'Pressing Progress',
// open graph metadata (optional)
description: 'Pressing Progress',
socialImageTitle: 'Pressing Progress',
socialImageSubtitle: 'Hello World! 👋',
// social usernames (optional)
twitter: 'PressGress',
// github: 'transitive-bullshit',
// linkedin: 'fisch2',
// 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: false,
// 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,
// map of notion page IDs to URL paths (optional)
// any pages defined here will override their default URL paths
// example:
//
pageUrlOverrides: {
'/fsd-tesla-vision-teleops': '44db4144527a440c84b44e38790e05ab'
}
}