mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
92 lines
2.8 KiB
JavaScript
Executable File
92 lines
2.8 KiB
JavaScript
Executable File
const githubURL = "https://github.com/checktheroads/hyperglass";
|
|
|
|
module.exports = {
|
|
title: "hyperglass",
|
|
tagline: "documentation for the modern network looking glass",
|
|
url: "https://hyperglass.io",
|
|
baseUrl: "/",
|
|
favicon: "img/favicon.ico",
|
|
organizationName: "checktheroads",
|
|
projectName: "hyperglass",
|
|
themeConfig: {
|
|
navbar: {
|
|
title: "hyperglass",
|
|
logo: {
|
|
alt: "hyperglass icon",
|
|
src: "img/icon.svg"
|
|
},
|
|
links: [
|
|
{ to: "docs/introduction", label: "Docs", position: "left" },
|
|
{ to: "screenshots", label: "Screenshots", position: "left" },
|
|
{
|
|
href: "https://demo.hyperglass.io",
|
|
label: "Demo",
|
|
position: "left"
|
|
}
|
|
]
|
|
},
|
|
footer: {
|
|
style: "dark",
|
|
links: [
|
|
{
|
|
title: "Docs",
|
|
items: [
|
|
{
|
|
label: "Introduction",
|
|
to: "docs/introduction"
|
|
},
|
|
{
|
|
label: "Getting Started",
|
|
to: "docs/getting-started"
|
|
},
|
|
{
|
|
label: "Configuration",
|
|
to: "docs/configuration"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
title: "Community",
|
|
items: [
|
|
{
|
|
label: "Stack Overflow",
|
|
href: "https://stackoverflow.com/questions/tagged/docusaurus"
|
|
},
|
|
{
|
|
label: "Discord",
|
|
href: "https://discordapp.com/invite/docusaurus"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
title: "Social",
|
|
items: [
|
|
{
|
|
label: "GitHub",
|
|
href: githubURL
|
|
},
|
|
{
|
|
label: "Twitter",
|
|
href: "https://twitter.com/checktheroads"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
},
|
|
presets: [
|
|
[
|
|
"@docusaurus/preset-classic",
|
|
{
|
|
docs: {
|
|
sidebarPath: require.resolve("./sidebars.js"),
|
|
editUrl: githubURL + "/edit/master/docs/"
|
|
},
|
|
theme: {
|
|
customCss: require.resolve("./src/css/custom.css")
|
|
}
|
|
}
|
|
]
|
|
]
|
|
};
|