-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathconfig.ts
More file actions
58 lines (57 loc) · 1.55 KB
/
config.ts
File metadata and controls
58 lines (57 loc) · 1.55 KB
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
import { viteBundler } from '@vuepress/bundler-vite';
import { markdownChartPlugin } from '@vuepress/plugin-markdown-chart';
import { searchPlugin } from '@vuepress/plugin-search';
import { defaultTheme } from '@vuepress/theme-default';
import { defineUserConfig } from 'vuepress';
export default defineUserConfig({
title: 'beachball',
description: 'The Sunniest Semantic Version Bumper',
base: '/beachball/',
bundler: viteBundler(),
theme: defaultTheme({
navbar: [
{ text: 'Home', link: '/' },
{ text: 'Getting started', link: '/overview/getting-started' },
{ text: 'GitHub', link: 'https://github.com/microsoft/beachball' },
],
sidebar: [
{
text: 'Overview',
collapsible: false,
children: ['/overview/getting-started', '/overview/installation', '/overview/configuration'],
},
{
text: 'Concepts',
collapsible: false,
children: [
'/concepts/bump-algorithm',
'/concepts/change-files',
'/concepts/change-types',
'/concepts/groups',
'/concepts/ci-integration',
'/concepts/ai-integration',
],
},
{
text: 'CLI commands',
collapsible: false,
children: [
'/cli/options',
'/cli/bump',
'/cli/change',
'/cli/check',
'/cli/config',
'/cli/prerelease',
'/cli/publish',
'/cli/sync',
],
},
],
}),
plugins: [
markdownChartPlugin({
mermaid: true,
}),
searchPlugin(),
],
});