File tree 2 files changed +31
-4
lines changed
2 files changed +31
-4
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,17 @@ export default defineConfig({
21
21
prev : '上一页' ,
22
22
next : '下一页'
23
23
} ,
24
+ editLink : {
25
+ pattern : 'https://github.com/doocs/jvm/edit/main/docs/:path' ,
26
+ text : '在 GitHub 编辑'
27
+ } ,
28
+ lastUpdated : {
29
+ text : 'Updated at' ,
30
+ formatOptions : {
31
+ dateStyle : 'full' ,
32
+ timeStyle : 'medium'
33
+ }
34
+ } ,
24
35
sidebar : [
25
36
{
26
37
items : [
@@ -75,5 +86,21 @@ export default defineConfig({
75
86
socialLinks : [
76
87
{ icon : 'github' , link : 'https://github.com/doocs/jvm' }
77
88
]
78
- }
89
+ } ,
90
+ head : [
91
+ [ 'link' , { rel : 'icon' , href : '/favicon.ico' } ] ,
92
+ [
93
+ 'script' ,
94
+ { async : '' , src : 'https://www.googletagmanager.com/gtag/js?id=G-7W625EPRG6' }
95
+ ] ,
96
+ [
97
+ 'script' ,
98
+ { } ,
99
+ `window.dataLayer = window.dataLayer || [];
100
+ function gtag(){dataLayer.push(arguments);}
101
+ gtag('js', new Date());
102
+ gtag('config', 'G-7W625EPRG6');`
103
+ ]
104
+ ] ,
105
+ cleanUrls : true ,
79
106
} )
Original file line number Diff line number Diff line change 6
6
name : " JVM 底层原理最全知识总结"
7
7
tagline :
8
8
actions :
9
- - theme : brand
10
- text : 开始学习
11
- link : /00-quickstart
12
9
- theme : alt
13
10
text : 作者主页
14
11
link : https://github.com/yanglbme
12
+ - theme : brand
13
+ text : 开始学习
14
+ link : /00-quickstart
15
15
16
16
features :
17
17
- title : JVM 内存结构
You can’t perform that action at this time.
0 commit comments