1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
checktheroads-hyperglass/docs/docusaurus.config.js

114 lines
2.7 KiB
JavaScript
Raw Normal View History

2020-02-08 00:58:32 -07:00
const githubURL = "https://github.com/checktheroads/hyperglass";
2020-03-02 07:22:27 -07:00
const { googleTrackingId, algoliaKey } = process.env;
2020-03-01 00:21:30 -07:00
2020-06-06 01:41:10 -07:00
require("./generateSitemap");
2020-02-08 00:58:32 -07:00
module.exports = {
2020-06-02 01:37:26 -07:00
title: "hyperglass",
tagline: "the network looking glass that tries to make the internet better.",
url: "https://hyperglass.io",
baseUrl: "/",
favicon: "img/favicon.ico",
organizationName: "checktheroads",
projectName: "hyperglass",
themeConfig: {
2020-07-04 15:01:25 -07:00
image: "opengraph.jpg",
2020-06-02 01:37:26 -07:00
googleAnalytics: {
trackingID: googleTrackingId || " ",
anonymizeIP: false,
},
gtag: {
trackingID: googleTrackingId || " ",
anonymizeIP: false,
},
algolia: {
apiKey: algoliaKey,
indexName: "hyperglass",
},
navbar: {
links: [
{ to: "docs/introduction", label: "Docs", position: "left" },
{ to: "screenshots", label: "Screenshots", position: "left" },
{ to: "demo", label: "Demo", 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",
},
],
2020-02-08 00:58:32 -07:00
},
2020-06-02 01:37:26 -07:00
{
title: "Community",
items: [
{
label: "Telegram",
href: "https://t.me/hyperglasslg",
},
{
label: "Gitter",
href: "https://gitter.im/hyperglass",
},
{
label: "Keybase",
href: "https://keybase.io/team/hyperglass",
},
],
2020-04-11 17:44:32 -07:00
},
2020-06-02 01:37:26 -07:00
{
title: "Social",
items: [
2020-02-08 00:58:32 -07:00
{
2020-06-02 01:37:26 -07:00
label: "GitHub",
href: githubURL,
2020-04-11 17:44:32 -07:00
},
2020-06-02 01:37:26 -07:00
{
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"),
},
},
2020-04-11 17:44:32 -07:00
],
2020-06-02 01:37:26 -07:00
],
plugins: [
"@docusaurus/plugin-google-analytics",
"@docusaurus/plugin-google-gtag",
"@docusaurus/plugin-sitemap",
],
2020-02-08 00:58:32 -07:00
};