-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocusaurus.config.js
130 lines (129 loc) · 3.38 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
const path = require("path");
/** @type {import('@docusaurus/types').DocusaurusConfig} */
module.exports = {
title: "RunIaC",
tagline: "Run Your Infrastructure as Code Anywhere with Ease.",
url: "https://runiac.io",
baseUrl: "/",
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",
plugins: [path.resolve(__dirname, "plugins", "firebase-analytics")],
favicon: "img/favicon/logo-transparent.png",
organizationName: "optum", // Usually your GitHub org/user name.
projectName: "runiac", // Usually your repo name.
themeConfig: {
algolia: {
apiKey: "2d118141c4193a047d2ca58c3491e188",
appId: '2WANC60WN9',
indexName: "runiac",
},
colorMode: {
respectPrefersColorScheme: true,
},
firebaseAnalytics: {
apiKey: "AIzaSyDavZvPsf9Egx4sBwbE7gIZO_yLY3jxc7k",
authDomain: "runiac-mg.firebaseapp.com",
projectId: "runiac-mg",
storageBucket: "runiac-mg.appspot.com",
messagingSenderId: "1098849270526",
appId: "1:1098849270526:web:1711c8a6a13d92e8f443af",
measurementId: "G-99DB4DQZ88",
},
navbar: {
title: "",
logo: {
alt: "Runiac",
src: "img/logo-runiac-transparent.png",
},
items: [
{
to: "docs/",
activeBasePath: "docs",
label: "Docs",
position: "left",
},
{
to: "docs/steps",
activeBasePath: "docs",
label: "Fundamentals",
position: "left",
},
{
label: "Starters",
href: "https://github.com/topics/runiac-starter",
},
// { to: "blog", label: "Blog", position: "left" },
// right
{
href: "https://github.com/optum/runiac",
position: "right",
className: "header-github-link",
"aria-label": "GitHub repository",
},
],
},
footer: {
style: "dark",
links: [
{
title: "Docs",
items: [
{
label: "Get Started",
to: "docs/",
label: "Fundamentals",
to: "docs/steps",
},
],
},
{
title: "Community",
items: [
{
label: "Stack Overflow",
href: "https://stackoverflow.com/questions/tagged/runiac",
},
{
label: "Discord",
href: "https://discord.gg/BwMGJNwn6U",
},
],
},
{
title: "More",
items: [
{
label: "Blog",
to: "blog",
},
{
label: "GitHub",
href: "https://github.com/optum/runiac",
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Runiac, LLC.`,
},
},
presets: [
[
"@docusaurus/preset-classic",
{
docs: {
sidebarPath: require.resolve("./sidebars.js"),
// Please change this to your repo.
editUrl: "https://github.com/runiac/website/edit/main/",
},
// blog: {
// showReadingTime: true,
// // Please change this to your repo.
// editUrl: "https://github.com/runiac/website/edit/main/",
// },
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
},
],
],
};