-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.config.ts
103 lines (98 loc) · 2.12 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import { defineSiteConfig } from 'valaxy'
export default defineSiteConfig({
mode: "light",
lang: 'zh-CN',
title: 'mypの小窝',
subtitle: '上帝保佑emoji正常显示',
description: '一只高中生的博客',
favicon: '/images/avatar.jpg',
author: {
name: 'Ma Yuanpeng',
avatar: '/images/avatar.jpg',
status: {
emoji: '🫥',
},
},
url: 'https://myp0402.github.io/',
mediumZoom: { enable: true },
lastUpdated: false,
license: {
enabled: true,
type: 'by-nc-nd',
},
social: [
{
name: 'RSS',
link: '/atom.xml',
icon: 'i-ri-rss-line',
color: 'orange',
},
{
name: 'GitHub',
link: 'https://github.com/myp0402',
icon: 'i-ri-github-line',
color: '#181717',
},
{
name: '哔哩哔哩',
link: 'https://space.bilibili.com/452052550',
icon: 'i-ri-bilibili-line',
color: '#FF8EB3',
},
{
name: 'E-Mail',
link: 'mailto:[email protected]',
icon: 'i-ri-mail-line',
color: '#8E71C1',
},
{
name: '追番列表',
link: '/bangumi',
icon: 'i-material-symbols:bookmark-heart-outline',
color: '#FF8EB3',
},
{
name: '异次元之旅',
link: 'https://travel.moe/go.html?travel=on',
icon: 'i-ri-planet-line',
color: '#E77C8E',
},
],
sponsor: {
enable: false,
title: '我很可爱,请给我钱!',
methods: [
{
name: '支付宝',
url: 'https://cdn.yunyoujun.cn/img/donate/alipay-qrcode.jpg',
color: '#00A3EE',
icon: 'i-ri-alipay-line',
},
{
name: 'QQ 支付',
url: 'https://cdn.yunyoujun.cn/img/donate/qqpay-qrcode.png',
color: '#12B7F5',
icon: 'i-ri-qq-line',
},
{
name: '微信支付',
url: 'https://cdn.yunyoujun.cn/img/donate/wechatpay-qrcode.jpg',
color: '#2DC100',
icon: 'i-ri-wechat-pay-line',
},
],
},
search: {
enable: false,
type: 'fuse',
},
comment: {
enable: true,
},
statistics: {
enable: true,
},
encrypt: {
enable: true,
},
})