-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.config.ts
81 lines (79 loc) · 1.63 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
import { defineSiteConfig } from 'valaxy'
export default defineSiteConfig({
url: 'https://shinya754.github.io/re-blog/',
lang: 'zh-CN',
title: '夤夜的世界旅行手记',
author: {
name: '千绫',
avatar: 'https://s21.ax1x.com/2024/04/15/pFv49hD.jpg',
},
/**
* 站点图标
*/
favicon: 'https://s21.ax1x.com/2024/04/09/pFLqonA.png',
/**
* 副标题
*/
subtitle: "Shinya's world travel notes.",
description: "Welcome.",
social: [
{
name: 'GitHub',
link: 'https://github.com/Shinya754',
icon: 'i-ri-home-line',
color: '#9999FF',
},
{
name: '网易云音乐',
link: 'https://music.163.com/#/user/home?id=368715015',
icon: 'i-ri-netease-cloud-music-line',
color: '#C20C0C',
},
{
name: '知乎',
link: 'https://www.zhihu.com/people/yin-ye-14-16',
icon: 'i-ri-zhihu-line',
color: '#0084FF',
},
{
name: '哔哩哔哩',
link: 'https://space.bilibili.com/4950796',
icon: 'i-ri-bilibili-line',
color: '#FF8EB3',
},
{
name: 'E-Mail',
link: 'mailto:[email protected]',
icon: 'i-ri-mail-line',
color: '#8E71C1',
},
],
/**
* 开启阅读统计
*/
statistics: {
enable: true,
readTime: {
/**
* 阅读速度
*/
speed: {
cn: 300,
en: 200,
},
},
},
search: {
enable: true,
},
sponsor: {
enable: true,
title: "希望我提供的帮助能够补偿你在这里花费的时间。",
methods: [
{
name: '无',
url: "https://s21.ax1x.com/2024/04/15/pFv51PO.jpg",
},
],
},
})