-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.config.ts
139 lines (138 loc) · 3.2 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
import { defineSiteConfig } from 'valaxy'
export default defineSiteConfig({
url: 'https://valaxy.site/',
lang: 'zh-CN',
title: '某曌的记事本',
subtitle:'All at sea.',
author: {
name: '某曌在努力',
avatar:'https://s2.loli.net/2025/01/05/BGIvtD6UbMqQAnN.jpg',
status: {
emoji: '💪🏻',
message: '锻炼中...'
}
},
vanillaLazyload:{
enable:true
},
encrypt:{
enable:true
},
comment:{
enable:true
},
favicon: 'https://s2.loli.net/2025/01/05/BGIvtD6UbMqQAnN.jpg',
lastUpdated: true,
description: '世界很大,我们很小,但只要心中有光,就能照亮自己的路。',
search: {
enable: true,
},
social: [
{
name: 'RSS',
link: '/atom.xml',
icon: 'i-ri-rss-line',
color: 'orange',
},
{
name: 'QQ',
link: 'tencent://AddContact/?fromId=45&fromSubId=1&subcmd=all&uin=787332942',
icon: 'i-ri-qq-line',
color: '#12B7F5',
},
{
name: 'GitHub',
link: 'https://github.com/Zengzzhao',
icon: 'i-ri-github-line',
color: '#6e5494',
},
{
name: '微博',
link: 'https://weibo.com/u/6079358073',
icon: 'i-ri-weibo-line',
color: '#E6162D',
},
{
name: '豆瓣',
link: 'https://www.douban.com/people/230373346/?_i=6045193f5vQX6L',
icon: 'i-ri-douban-line',
color: '#007722',
},
{
name: '网易云音乐',
link: 'https://music.163.com/#/user/home?id=8919414798',
icon: 'i-ri-netease-cloud-music-line',
color: '#C20C0C',
},
{
name: '知乎',
link: 'https://www.zhihu.com/people/mou-zhao-2',
icon: 'i-ri-zhihu-line',
color: '#0084FF',
},
{
name: '哔哩哔哩',
link: 'https://space.bilibili.com/490548239?spm_id_from=333.1007.0.0',
icon: 'i-ri-bilibili-line',
color: '#FF8EB3',
},
{
name: '微信',
link: '',
icon: 'i-ri-wechat-2-line',
color: '#1AAD19',
},
{
name: 'Twitter',
link: 'https://x.com/W787332942',
icon: 'i-ri-twitter-x-fill',
color: 'black',
},
{
name: '抖音',
link: 'https://www.douyin.com/user/self',
icon: 'i-ri-tiktok-fill',
color: 'black',
},
{
name: 'E-Mail',
link: 'mailto:787332942@qq.com',
icon: 'i-ri-mail-line',
color: '#8E71C1',
},
// {
// name: 'Travelling',
// link: 'https://www.travellings.cn/go.html',
// icon: 'i-ri-train-line',
// color: 'var(--va-c-text)',
// },
],
sponsor: {
enable: true,
description:'请我喝一杯咖啡!',
methods: [
{
name: '支付宝',
url: 'https://s2.loli.net/2025/01/05/QfC6ZVwlxntoHmy.jpg',
color: '#00A3EE',
icon: 'i-ri-alipay-line',
},
{
name: 'QQ 支付',
url: 'https://s2.loli.net/2025/01/05/joYl8OTqUd3J9LF.jpg',
color: '#12B7F5',
icon: 'i-ri-qq-line',
},
{
name: '微信支付',
url: 'https://s2.loli.net/2025/01/05/GYioJDrme1puhTC.jpg',
color: '#2DC100',
icon: 'i-ri-wechat-pay-line',
},
],
},
statistics:{
enable:true
},
codeHeightLimit:300
})