|
1 | 1 | module.exports = { |
2 | | - lang: "zh-CN", |
3 | | - title: "JVM 底层原理最全知识总结", |
4 | | - description: "Doocs开源社区", |
| 2 | + lang: 'zh-CN', |
| 3 | + title: 'JVM 底层原理最全知识总结', |
| 4 | + description: 'Doocs开源社区', |
5 | 5 | head: [ |
6 | 6 | [ |
7 | | - "link", |
| 7 | + 'link', |
8 | 8 | { |
9 | | - rel: "icon", |
10 | | - href: "https://avatars.githubusercontent.com/u/43716716?s=200&v=4", |
| 9 | + rel: 'icon', |
| 10 | + href: 'https://avatars.githubusercontent.com/u/43716716?s=200&v=4', |
11 | 11 | }, |
12 | 12 | ], |
13 | 13 | ], |
14 | | - base: "/jvm/", |
| 14 | + base: '/jvm/', |
15 | 15 | themeConfig: { |
16 | | - repo: "doocs/jvm", |
17 | | - logo: "https://avatars.githubusercontent.com/u/43716716?s=200&v=4", |
| 16 | + repo: 'doocs/jvm', |
| 17 | + logo: 'https://avatars.githubusercontent.com/u/43716716?s=200&v=4', |
18 | 18 | open: true, |
19 | | - contributorsText: "贡献者", |
20 | | - docsDir: "docs", |
21 | | - editLinkText: "编辑", |
22 | | - lastUpdatedText: "最近更新时间", |
| 19 | + contributorsText: '贡献者', |
| 20 | + docsDir: 'docs', |
| 21 | + editLinkText: '编辑', |
| 22 | + lastUpdatedText: '最近更新时间', |
23 | 23 | locales: { |
24 | | - "/": { |
25 | | - tip: "说明", |
26 | | - warning: "注意", |
27 | | - danger: "警告", |
| 24 | + '/': { |
| 25 | + tip: '说明', |
| 26 | + warning: '注意', |
| 27 | + danger: '警告', |
28 | 28 | }, |
29 | 29 | }, |
30 | 30 | sidebar: [ |
31 | 31 | { |
32 | | - text: "指南", |
| 32 | + text: '指南', |
33 | 33 | children: [ |
34 | | - "/00-quickstart.md", |
35 | | - "/01-jvm-memory-structure.md", |
36 | | - "/02-hotspot-jvm-object.md", |
37 | | - "/03-gc-algorithms.md", |
38 | | - "/04-hotspot-gc.md", |
39 | | - "/05-memory-allocation-gc.md", |
40 | | - "/06-jvm-performance-tuning.md", |
41 | | - "/07-class-structure.md", |
42 | | - "/08-load-class-time.md", |
43 | | - "/09-load-class-process.md", |
44 | | - "/10-class-loader.md", |
| 34 | + '/00-quickstart.md', |
| 35 | + '/01-jvm-memory-structure.md', |
| 36 | + '/02-hotspot-jvm-object.md', |
| 37 | + '/03-gc-algorithms.md', |
| 38 | + '/04-hotspot-gc.md', |
| 39 | + '/05-memory-allocation-gc.md', |
| 40 | + '/06-jvm-performance-tuning.md', |
| 41 | + '/07-class-structure.md', |
| 42 | + '/08-load-class-time.md', |
| 43 | + '/09-load-class-process.md', |
| 44 | + '/10-class-loader.md', |
45 | 45 | ], |
46 | 46 | }, |
47 | 47 | ], |
48 | 48 | }, |
49 | 49 | plugins: [ |
50 | 50 | [ |
51 | | - "@vuepress/plugin-search", |
| 51 | + '@vuepress/plugin-search', |
52 | 52 | { |
53 | | - isSearchable: (page) => page.path !== "/", |
| 53 | + isSearchable: page => page.path !== '/', |
54 | 54 | }, |
55 | 55 | ], |
56 | 56 | ], |
|
0 commit comments