-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsite.config.ts
70 lines (69 loc) · 1.56 KB
/
site.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import { defineSiteConfig } from "valaxy";
export default defineSiteConfig({
encrypt: {
enable: true
},
search: {
enable: true,
type: "fuse",
},
url: "https://simimi.cn",
lang: "zh-CN",
title: "思米米(SIMIMI)",
subtitle: "All at sea.",
author: {
avatar: "https://q1.qlogo.cn/g?b=qq&nk=79099400&s=640",
status: {
emoji: "😣",
message: "Hi"
},
name: "Herway",
link: "https://simimi.cn",
email: "[email protected]",
},
favicon: "/favicon.svg",
description: "山有木兮木有枝,心悦君兮君不知。",
mediumZoom: { enable: true },
social: [
{
name: "RSS",
link: "/atom.xml",
icon: "i-ri-rss-line",
color: "orange",
},
{
name: "GitHub",
link: "https://github.com/hqw567",
icon: "i-ri-github-line",
color: "#6e5494",
},
],
comment: {
enable: true,
},
sponsor: {
enable: true,
title: "我很可爱,请给我钱!",
description: "如果你觉得我的文章对你有帮助,欢迎赞助我!",
methods: [
{
name: "支付宝",
url: "//img.simimi.cn/img/donate/alipay-qrcode.jpg",
color: "#00A3EE",
icon: "i-ri-alipay-line",
},
{
name: "QQ 支付",
url: "//img.simimi.cn/img/donate/qqpay-qrcode.png",
color: "#12B7F5",
icon: "i-ri-qq-line",
},
{
name: "微信支付",
url: "//img.simimi.cn/img/donate/wechatpay-qrcode.png",
color: "#2DC100",
icon: "i-ri-wechat-pay-line",
},
],
},
});