Skip to content

Commit 53208f8

Browse files
author
Hyunje Jun
committed
Reformat VuePress config
1 parent 192eeba commit 53208f8

File tree

1 file changed

+44
-45
lines changed

1 file changed

+44
-45
lines changed

docs/.vuepress/config.js

Lines changed: 44 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,87 +1,86 @@
11
module.exports = {
2-
base: '/line-bot-sdk-nodejs',
2+
base: "/line-bot-sdk-nodejs/",
33
head: [
4-
['link', { rel: 'icon', href: '/favicon.ico' }]
4+
["link", { rel: "icon", href: "/favicon.ico" }]
55
],
6-
title: 'line-bot-sdk-nodejs',
7-
description: 'Node.js SDK for LINE Messaging API',
6+
title: "line-bot-sdk-nodejs",
7+
description: "Node.js SDK for LINE Messaging API",
88
themeConfig: {
99
nav: [
10-
{
11-
text: 'Introduction',
12-
link: '/'
10+
{
11+
text: "Introduction",
12+
link: "/"
1313
},
14-
{
15-
text: 'Getting Started',
16-
link: '/getting-started'
14+
{
15+
text: "Getting Started",
16+
link: "/getting-started"
1717
},
18-
{
19-
text: 'Guide',
20-
link: '/guide'
18+
{
19+
text: "Guide",
20+
link: "/guide"
2121
},
22-
{
23-
text: 'API Reference',
24-
link: '/api-reference'
25-
22+
{
23+
text: "API Reference",
24+
link: "/api-reference"
25+
2626
},
27-
{
28-
text: 'Contributing',
29-
link: '/CONTRIBUTING'
27+
{
28+
text: "Contributing",
29+
link: "/CONTRIBUTING"
3030
},
31-
{
32-
text: 'LINE Developers',
33-
link: 'https://developers.line.me/en/'
31+
{
32+
text: "LINE Developers",
33+
link: "https://developers.line.me/en/"
3434
},
35-
{
36-
text: 'GitHub',
37-
link: 'https://github.com/line/line-bot-sdk-nodejs/'
35+
{
36+
text: "GitHub",
37+
link: "https://github.com/line/line-bot-sdk-nodejs/"
3838
},
3939
],
4040
sidebar: [
41-
{
41+
{
4242
title: "Introduction",
4343
collapsable: false,
4444
children: [
45-
'',
45+
"",
4646
]
4747
},
48-
{
48+
{
4949
title: "Getting Started",
5050
collapsable: false,
5151
children: [
52-
'/getting-started/requirements',
53-
'/getting-started/install',
54-
'/getting-started/basic-usage',
52+
"/getting-started/requirements",
53+
"/getting-started/install",
54+
"/getting-started/basic-usage",
5555
]
5656
},
57-
{
57+
{
5858
title: "Guide",
5959
collapsable: false,
6060
children: [
61-
'/guide/webhook',
62-
'/guide/client',
63-
'/guide/typescript',
61+
"/guide/webhook",
62+
"/guide/client",
63+
"/guide/typescript",
6464
]
6565
},
66-
{
66+
{
6767
title: "API Reference",
6868
collapsable: false,
6969
children: [
70-
'/api-reference/client',
71-
'/api-reference/validate-signature',
72-
'/api-reference/middleware',
73-
'/api-reference/exceptions',
74-
'/api-reference/message-and-event-objects',
70+
"/api-reference/client",
71+
"/api-reference/validate-signature",
72+
"/api-reference/middleware",
73+
"/api-reference/exceptions",
74+
"/api-reference/message-and-event-objects",
7575
]
7676
},
77-
{
77+
{
7878
title: "Contributing",
7979
collapsable: false,
8080
children: [
81-
'/CONTRIBUTING',
81+
"/CONTRIBUTING",
8282
]
8383
},
8484
]
8585
}
8686
}
87-

0 commit comments

Comments
 (0)