|
| 1 | +const BLOG = { |
| 2 | + title: '塘里博客', |
| 3 | + author: 'tangly', |
| 4 | + |
| 5 | + link: 'https://tangly1024.com', |
| 6 | + description: '唐风集里,收卷波澜', |
| 7 | + lang: 'zh-CN', // ['zh-CN','en-US'] |
| 8 | + appearance: 'auto', // ['light', 'dark', 'auto'], |
| 9 | + font: 'font-sans', // ['font-sans', 'font-serif', 'font-mono'] |
| 10 | + lightBackground: '#ffffff', // use hex value, don't forget '#' e.g #fffefc |
| 11 | + darkBackground: '#111827', // use hex value, don't forget '#' |
| 12 | + path: '', // leave this empty unless you want to deploy in a folder |
| 13 | + since: 2020, // if leave this empty, current year will be used. |
| 14 | + postsPerPage: 6, |
| 15 | + sortByDate: false, |
| 16 | + showAbout: true, // WIP |
| 17 | + showArchive: true, // WIP |
| 18 | + autoCollapsedNavBar: false, // the automatically collapsed navigation bar |
| 19 | + socialLink: 'https://weibo.com/u/2245301913', |
| 20 | + seo: { |
| 21 | + keywords: ['Blog', 'Website', 'Notion'], |
| 22 | + googleSiteVerification: '' // Remove the value or replace it with your own google site verification code |
| 23 | + }, |
| 24 | + notionPageId: process.env.NOTION_PAGE_ID || 'bee1fccfa3bd47a1a7be83cc71372d83', // DO NOT CHANGE THIS!!! |
| 25 | + notionAccessToken: process.env.NOTION_ACCESS_TOKEN || '', // Useful if you prefer not to make your database public |
| 26 | + analytics: { |
| 27 | + provider: 'ga', // Currently we support Google Analytics and Ackee, please fill with 'ga' or 'ackee', leave it empty to disable it. |
| 28 | + ackeeConfig: { |
| 29 | + tracker: '', // e.g 'https://ackee.tangly1024.net/tracker.js' |
| 30 | + dataAckeeServer: '', // e.g https://ackee.tangly1024.net , don't end with a slash |
| 31 | + domainId: '' // e.g '0e2257a8-54d4-4847-91a1-0311ea48cc7b' |
| 32 | + }, |
| 33 | + gaConfig: { |
| 34 | + measurementId: 'G-5EV4HZD0XX' // e.g: G-XXXXXXXXXX |
| 35 | + } |
| 36 | + }, |
| 37 | + comment: { |
| 38 | + // support provider: gitalk, utterances, cusdis |
| 39 | + provider: 'cusdis', // leave it empty if you don't need any comment plugin |
| 40 | + gitalkConfig: { |
| 41 | + repo: 'NotionNext', // The repository of store comments |
| 42 | + owner: 'tangly1024', |
| 43 | + admin: ['tangly1024'], |
| 44 | + clientID: 'be7864a16b693e256f8f', |
| 45 | + clientSecret: 'dbd0f6d9ceea8940f6ed20936b415274b8fe66a2', |
| 46 | + distractionFreeMode: false |
| 47 | + }, |
| 48 | + cusdisConfig: { |
| 49 | + appId: '445ba48e-f751-487f-b22f-cdbe3310d28f', // data-app-id |
| 50 | + host: 'https://cusdis.com', // data-host, change this if you're using self-hosted version |
| 51 | + scriptSrc: 'https://cusdis.com/js/cusdis.es.js' // change this if you're using self-hosted version |
| 52 | + }, |
| 53 | + utterancesConfig: { |
| 54 | + repo: 'tangly1024/NotionNext' |
| 55 | + } |
| 56 | + }, |
| 57 | + isProd: process.env.VERCEL_ENV === 'production' // distinguish between development and production environment (ref: https://vercel.com/docs/environment-variables#system-environment-variables) |
| 58 | +} |
| 59 | +// export default BLOG |
| 60 | +module.exports = BLOG |
0 commit comments