-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.ts
48 lines (42 loc) · 1.13 KB
/
config.ts
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
import type { Site, SocialObjects, OG_Type } from "./types";
export const SITE: Site = {
website: "https://liruifengv.com/",
author: "liruifengv",
desc: "liruifengv 的个人网站。分享技术、生活、读书、随笔等。李瑞丰的个人博客。",
title: "liruifengv",
lightAndDarkMode: true,
postPerPage: 10,
avatar: "https://bucket.liruifengv.com/avatar.jpg",
};
export const LOCALE = ["zh-CN"]; // set to [] to use the environment default
export const LOGO_IMAGE = {
enable: false,
svg: true,
width: 216,
height: 46,
};
export const SOCIALS: SocialObjects = [
{
name: "Github",
href: "https://github.com/liruifengv",
linkTitle: `liruifengv's Github`,
active: true,
},
{
name: "Mail",
href: "mailto:[email protected]",
linkTitle: `Send an email to liruifengv`,
active: true,
},
{
name: "Twitter",
href: "https://twitter.com/liruifengv",
linkTitle: `liruifengv's Twitter`,
active: true,
},
];
export const OG: OG_Type = {
emojiType: "twemoji",
// ogImage: "astropaper-og.jpg",
};
export const CND_URL: string = "https://bucket.liruifengv.com";