-
Notifications
You must be signed in to change notification settings - Fork 0
/
site.config.ts
69 lines (68 loc) · 1.54 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
import { defineSiteConfig } from 'valaxy'
export default defineSiteConfig({
lang: 'zh-CN',
title: 'Axi\'s Blog',
url: 'https://axi404.top/',
author: {
avatar: 'https://pic.axi404.top/avatar.6t71qqiv1e.webp',
name: '阿汐',
},
pageSize: 20,
search: {
enable: true,
type: 'fuse',
},
description: 'Axi\'s Notes',
social: [
{
name: 'Student E-Mail',
link: 'mailto:[email protected]',
icon: 'i-material-symbols-attach-email',
color: '#5EC29E',
},
{
name: 'Lab E-Mail',
link: 'mailto:[email protected]',
icon: 'i-material-symbols-attach-email',
color: '#98C25E',
},
{
name: 'RSS',
link: '/atom.xml',
icon: 'i-material-symbols-rss-feed-rounded',
color: 'orange',
},
{
name: '3406402603',
link: '--',
icon: 'i-ri-qq-line',
color: '#12B7F5',
},
{
name: 'GitHub',
link: 'https://github.com/Axi404',
icon: 'i-ri-github-line',
color: '#6e5494',
},
{
name: '哔哩哔哩',
link: 'https://space.bilibili.com/292806383',
icon: 'i-ri-bilibili-line',
color: '#FF8EB3',
},
{
name: 'QQ E-Mail',
link: 'mailto:[email protected]',
icon: 'i-material-symbols-attach-email',
color: '#C25E75',
},
{
name: 'Google E-Mail',
link: 'mailto:[email protected]',
icon: 'i-material-symbols-attach-email',
color: '#8E71C1',
}
],
statistics: { enable: true },
comment: { enable: true },
})