forked from craigary/nobelium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.config.js
50 lines (50 loc) · 1.87 KB
/
blog.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
const BLOG = {
title: 'BAYMAX',
author: 'baymaxbowen',
email: '[email protected]',
link: 'https://nobelium.vercel.app',
description: '这可能是一个网站',
lang: 'en-US',
appearance: 'auto', // ['light', 'dark', 'auto'],
font: 'sans-serif', // ['sans-serif', 'serif']
lightBackground: '#ffffff', // use hex value, don't forget '#' e.g #fffefc
darkBackground: '#111827', // use hex value, don't forget '#'
path: '', // leave this empty unless you want to deploy Nobelium in a folder
since: 2021, // if leave this empty, current year will be used.
postsPerPage: 7,
sortByDate: true,
showAbout: true, // WIP
showArchive: true, // WIP
socialLink: '', // https://github.com/baymaxbowen/nobelium.git
seo: {
keywords: ['Blog', 'Website', 'Notion'],
googleSiteVerification: '' // Remove the value or replace it with your own google site verification code
},
notionPageId: process.env.NOTION_PAGE_ID, // DO NOT CHANGE THIS!!!
notionAccessToken: process.env.NOTION_ACCESS_TOKEN, // Useful if you prefer not to make your database public
analytics: {
provider: '', // Currently we support Google Analytics and Ackee, please fill with 'ga' or 'ackee', leave it empty to disable it.
ackeeConfig: {
tracker: '', // e.g 'https://ackee.craigary.net/tracker.js'
dataAckeeServer: '', // e.g https://ackee.craigary.net , don't end with a slash
domainId: '' // e.g '0e2257a8-54d4-4847-91a1-0311ea48cc7b'
},
gaConfig: {
measurementId: '' // e.g: G-XXXXXXXXXX
}
},
comment: {
// support provider: gitalk
provider: '', // leave it empty if you don't need any comment plugin
gitalkConfig: {
repo: '', // The repository of store comments
owner: '',
admin: [],
clientID: '',
clientSecret: '',
distractionFreeMode: false
}
}
}
// export default BLOG
module.exports = BLOG