forked from IMBlues/nobelium
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
36 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,62 @@ | ||
const BLOG = { | ||
title: '布鲁斯鱼的妙想天开', | ||
author: 'bluesyu', | ||
email: 'bluesedenyu@gmail.com', | ||
link: 'https://next.emergencyexit.xyz/', | ||
description: '此间的博文大抵有两类,一种是水的,另一种仍是水的罢。 —— 鲁迅', | ||
lang: 'zh-CN', // ['en-US', 'zh-CN', 'zh-HK', 'zh-TW', 'ja-JP', 'es-ES'] | ||
appearance: 'auto', // ['light', 'dark', 'auto'], | ||
font: 'sans-serif', // ['sans-serif', 'serif'] | ||
lightBackground: '#ffffff', // use hex value, don't forget '#' e.g #fffefc | ||
darkBackground: '#18181B', // use hex value, don't forget '#' | ||
path: '', // leave this empty unless you want to deploy Nobelium in a folder | ||
title: "Musher's Frontend Coding Blog", | ||
author: "Musher", | ||
email: "musher@gmail.com", | ||
link: "", | ||
description: "無限進步", | ||
lang: "zh-CN", // ['en-US', 'zh-CN', 'zh-HK', 'zh-TW', 'ja-JP', 'es-ES'] | ||
appearance: "auto", // ['light', 'dark', 'auto'], | ||
font: "sans-serif", // ['sans-serif', 'serif'] | ||
lightBackground: "#ffffff", // use hex value, don't forget '#' e.g #fffefc | ||
darkBackground: "#18181B", // use hex value, don't forget '#' | ||
path: "", // leave this empty unless you want to deploy Nobelium in a folder | ||
since: 2019, // If leave this empty, current year will be used. | ||
postsPerPage: 9, | ||
sortByDate: true, | ||
showAbout: true, | ||
showArchive: true, | ||
autoCollapsedNavBar: false, // The automatically collapsed navigation bar | ||
ogImageGenerateURL: 'https://og-image-craigary.vercel.app', // The link to generate OG image, don't end with a slash | ||
socialLink: 'https://twitter.com/bluesedenyu', | ||
ogImageGenerateURL: "https://og-image-craigary.vercel.app", // The link to generate OG image, don't end with a slash | ||
socialLink: "", | ||
seo: { | ||
keywords: ['Blog', 'Notion', 'Tech', 'Python', 'Django'], | ||
googleSiteVerification: '' // Remove the value or replace it with your own google site verification code | ||
keywords: ["Blog", "Notion", "Tech", "React", "Vue"], | ||
googleSiteVerification: "", // Remove the value or replace it with your own google site verification code | ||
}, | ||
// notionPageId: process.env.NOTION_PAGE_ID, // DO NOT CHANGE THIS!!! | ||
notionPageId: 'a60899092d0d43efaf935e041712e826', | ||
notionPageId: "0eb813c6179c43e08c1227cc22341e33", | ||
notionAccessToken: process.env.NOTION_ACCESS_TOKEN, // Useful if you prefer not to make your database public | ||
analytics: { | ||
provider: 'ga', // Currently we support Google Analytics and Ackee, please fill with 'ga' or 'ackee', leave it empty to disable it. | ||
provider: "ga", // 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' | ||
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: 'G-WV23EXEF9X' // e.g: G-XXXXXXXXXX | ||
} | ||
measurementId: "G-WV23EXEF9X", // e.g: G-XXXXXXXXXX | ||
}, | ||
}, | ||
comment: { | ||
// support provider: gitalk, utterances, cusdis | ||
provider: 'utterances', // leave it empty if you don't need any comment plugin | ||
provider: "", // leave it empty if you don't need any comment plugin | ||
gitalkConfig: { | ||
repo: '', // The repository of store comments | ||
owner: '', | ||
repo: "", // The repository of store comments | ||
owner: "", | ||
admin: [], | ||
clientID: '', | ||
clientSecret: '', | ||
distractionFreeMode: false | ||
clientID: "", | ||
clientSecret: "", | ||
distractionFreeMode: false, | ||
}, | ||
utterancesConfig: { | ||
repo: 'IMBlues/IMBlues.github.io' | ||
repo: "IMBlues/IMBlues.github.io", | ||
}, | ||
cusdisConfig: { | ||
appId: '', // data-app-id | ||
host: 'https://cusdis.com', // data-host, change this if you're using self-hosted version | ||
scriptSrc: 'https://cusdis.com/js/cusdis.es.js' // change this if you're using self-hosted version | ||
} | ||
appId: "", // data-app-id | ||
host: "https://cusdis.com", // data-host, change this if you're using self-hosted version | ||
scriptSrc: "https://cusdis.com/js/cusdis.es.js", // change this if you're using self-hosted version | ||
}, | ||
}, | ||
isProd: process.env.VERCEL_ENV === 'production' // distinguish between development and production environment (ref: https://vercel.com/docs/environment-variables#system-environment-variables) | ||
} | ||
isProd: process.env.VERCEL_ENV === "production", // distinguish between development and production environment (ref: https://vercel.com/docs/environment-variables#system-environment-variables) | ||
}; | ||
// export default BLOG | ||
module.exports = BLOG | ||
module.exports = BLOG; |