mirror of
https://github.com/d0zingcat/nextjs-notion-starter-kit.git
synced 2026-05-13 23:16:47 +00:00
38 lines
1.2 KiB
JavaScript
38 lines
1.2 KiB
JavaScript
module.exports = {
|
|
// where it all starts -- the site's root Notion page (required)
|
|
rootNotionPageId: '78fc5a4b88d74b0e824e29407e9f1ec1',
|
|
|
|
// basic site info (required)
|
|
name: 'Transitive Bullshit',
|
|
domain: 'transitivebullsh.it',
|
|
author: 'Travis Fischer',
|
|
|
|
// open graph metadata (optional)
|
|
description: 'Example site description',
|
|
socialImageTitle: 'Transitive Bullshit',
|
|
socialImageSubtitle: 'Hello World! 👋',
|
|
|
|
// social usernames (optional)
|
|
twitter: 'transitive_bs',
|
|
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, // URL
|
|
defaultPageCover: null, // URL
|
|
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: null,
|
|
|
|
// 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
|
|
}
|