docusaurus/website/siteConfig.js

76 lines
1.8 KiB
JavaScript
Raw Normal View History

2017-07-27 19:15:47 -04:00
/**
* Copyright (c) 2017-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
2017-07-27 19:15:47 -04:00
*/
/* List of projects/orgs using your project for the users page */
const users = [
{
caption: "Prettier",
image: "/img/prettier.png",
2017-07-27 19:15:47 -04:00
infoLink: "https://www.prettier.io",
pinned: true
2017-08-10 16:43:22 -04:00
},
{
2017-08-16 16:34:01 -04:00
caption: "FastText",
image: "/img/fasttext.png",
2017-08-16 16:34:01 -04:00
infoLink: "https://fasttext.cc",
pinned: true
},
{
2017-10-24 15:56:39 -04:00
caption: "Jest",
image: "/img/jest.png",
infoLink: "https://facebook.github.io/jest/",
pinned: true
},
{
2017-08-10 16:43:22 -04:00
caption: "Docusaurus",
image: "/img/docusaurus.svg",
2017-08-10 16:43:22 -04:00
infoLink: "https://www.docusaurus.io",
pinned: true
2017-07-27 19:15:47 -04:00
}
];
const siteConfig = {
title: "Docusaurus",
tagline: "Easy to Maintain Open Source Documentation Websites",
url: "https://docusaurus.io",
baseUrl: "/",
2017-08-16 19:45:34 -04:00
projectName: "Docusaurus",
2017-08-16 18:26:00 -04:00
cname: "docusaurus.io",
noIndex: true,
2017-07-27 19:15:47 -04:00
users,
editUrl:
"https://github.com/facebookexperimental/docusaurus/edit/master/docs/",
2017-08-08 16:46:11 -04:00
headerLinks: [
{ doc: "installation", label: "Docs" },
{ page: "help", label: "Help" },
{ blog: true, label: "Blog" },
2017-07-27 19:15:47 -04:00
{
href: "https://github.com/facebookexperimental/docusaurus",
2017-08-08 16:46:11 -04:00
label: "GitHub"
2017-07-27 19:15:47 -04:00
}
],
headerIcon: "img/docusaurus.svg",
2017-08-09 12:40:14 -04:00
footerIcon: "img/docusaurus_monochrome.svg",
2017-08-16 22:29:30 -04:00
favicon: "img/docusaurus.ico",
algolia: {
2017-08-17 11:34:02 -04:00
apiKey: "3eb9507824b8be89e7a199ecaa1a9d2c",
indexName: "docusaurus"
},
2017-07-27 19:15:47 -04:00
colors: {
primaryColor: "#2E8555",
secondaryColor: "#205C3B"
},
translationRecruitingLink: "https://crowdin.com/project/docusaurus",
copyright: "Copyright © " + new Date().getFullYear() + " Facebook Inc.",
highlight: {
theme: "solarized-dark"
}
2017-07-27 19:15:47 -04:00
};
2017-07-27 19:15:47 -04:00
module.exports = siteConfig;