-
-
Notifications
You must be signed in to change notification settings - Fork 299
/
docusaurus.config.js
107 lines (107 loc) · 2.99 KB
/
docusaurus.config.js
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
module.exports = {
title: 'Home Assistant Companion Docs',
tagline: 'Everything you need to know to use Home Assistant Companion',
url: 'https://companion.home-assistant.io',
baseUrl: '/',
favicon: 'img/brand/favicon.png',
organizationName: 'home-assistant', // Usually your GitHub org/user name.
projectName: 'companion.home-assistant', // Usually your repo name.
themeConfig: {
navbar: {
title: 'Companion Apps',
logo: {
alt: 'Home Assistant',
src: 'img/brand/logo.svg',
srcDark: 'img/brand/logo.svg',
},
items: [
{ to: '/docs/getting_started', label: 'Docs', position: 'left' },
{ to: '/download', label: 'Download', position: 'left' },
{ to: '/docs/gallery/android', label: 'Gallery', position: 'left' },
{ to: '/docs/troubleshooting/more-help', label: 'Support', position: 'left' },
{
href: 'https://www.github.com/home-assistant/iOS',
label: 'GitHub (iOS)',
position: 'right',
},
{
href: 'https://www.github.com/home-assistant/android',
label: 'GitHub (Android)',
position: 'right',
},
],
},
footer: {
logo: {
alt: "Home Assistant",
src: "img/brand/logo-white.svg",
height: "30px",
href: "https://www.home-assistant.io",
},
style: 'dark',
links: [
{
title: 'Community',
items: [
{
label: 'Forum',
href: 'https://community.home-assistant.io/c/mobile-apps/40'
},
{
label: 'Discord',
href: 'https://discordapp.com/channels/330944238910963714/551871772484698112',
},
{
label: 'GitHub',
href: 'https://github.com/home-assistant',
},
],
},
{
title: 'Social',
items: [
{
label: 'Twitter',
href: 'https://twitter.com/home_assistant',
},
{
label: 'Facebook',
href: 'https://www.facebook.com/homeassistantio/',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Home Assistant. Built with Docusaurus.`,
},
image: 'img/default-social.png'
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
editUrl:
'https://github.com/home-assistant/companion.home-assistant/edit/master/',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
googleAnalytics: {
trackingID: 'UA-57927901-7'
},
},
],
],
plugins: [
[
require.resolve("@easyops-cn/docusaurus-search-local"),
{
hashed: true,
indexDocs: true,
indexBlog: true,
highlightSearchTermsOnTargetPage: true,
},
],
],
};