1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-19 00:15:43 +01:00
unleash.unleash/website_v2/docusaurus.config.js
Ivar Conradi Østhus 38a92b259d
fix: adopt docusaurus v2
fixes: #771
2021-04-14 19:44:01 +02:00

130 lines
3.0 KiB
JavaScript

module.exports={
"title": "Unleash",
"tagline": "The enterprise ready feature toggle service",
"url": "https://docs.getunleash.io",
"baseUrl": "/",
"organizationName": "Unleash",
"projectName": "unleash.github.io",
"scripts": [
"https://buttons.github.io/buttons.js"
],
"favicon": "img/favicon/favicon.ico",
"customFields": {
"users": [
{
"caption": "FINN.no",
"image": "/img/finn.jpg",
"infoLink": "https://www.finn.no",
"pinned": true
},
{
"caption": "NAV.no",
"image": "/img/nav.jpg",
"infoLink": "https://www.nav.no",
"pinned": true
},
{
"caption": "Unleash Hosted",
"image": "/img/unleash-hosted.svg",
"infoLink": "https://www.unleash-hosted.com",
"pinned": true
},
{
"caption": "Budgets",
"image": "/img/budgets.png",
"infoLink": "https://budgets.money",
"pinned": true
},
{
"caption": "Otovo",
"image": "/img/otovo.png",
"infoLink": "https://www.otovo.com",
"pinned": true
},
{
"caption": "Amedia",
"image": "/img/amedia-logo.png",
"infoLink": "https://www.amedia.no/",
"pinned": true
}
],
"repoUrl": "https://github.com/unleash/unleash",
"gaGtag": true
},
"onBrokenLinks": "log",
"onBrokenMarkdownLinks": "log",
"presets": [
[
"@docusaurus/preset-classic",
{
"docs": {
"path": "../docs",
"showLastUpdateAuthor": true,
"showLastUpdateTime": true,
"sidebarPath": "./sidebars.json"
},
"blog": {},
"theme": {
"customCss": "../src/css/customTheme.css"
}
}
]
],
"plugins": [],
"themeConfig": {
"navbar": {
"title": "Unleash",
"logo": {
"src": "img/logo-inverted.png"
},
"items": [
{
"to": "docs/",
"label": "Documentation",
"position": "left"
},
{
"to": "docs/deploy/getting_started",
"label": "Deploy and manage",
"position": "left"
},
{
"to": "docs/integrations/integrations",
"label": "Integrations",
"position": "left"
},
{
"to": "docs/developer_guide",
"label": "Contribute",
"position": "left"
},
{
"to": "docs/api/client/features",
"label": "API",
"position": "left"
},
{
"href": "https://www.unleash-hosted.com/open-source",
"label": "Enterprise",
"position": "left"
},
{
"to": "/help",
"label": "Help",
"position": "left"
}
]
},
"image": "img/unleash_logo.png",
"footer": {
"links": [],
"copyright": "Copyright © 2021",
"logo": {
"src": "img/logo-inverted.png"
}
},
"gtag": {
"trackingID": "UA-134882379-1"
}
}
}