mirror of
https://github.com/facebook/docusaurus.git
synced 2025-04-29 18:27:56 +02:00
69 lines
1.8 KiB
JavaScript
69 lines
1.8 KiB
JavaScript
/**
|
|
* Copyright (c) 2017-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
/* List of projects/orgs using your project for the users page */
|
|
const users = [
|
|
{
|
|
caption: "Prettier",
|
|
image: "/img/prettier.png",
|
|
infoLink: "https://www.prettier.io",
|
|
pinned: true
|
|
},
|
|
{
|
|
caption: "FastText",
|
|
image: "/img/fasttext.png",
|
|
infoLink: "https://fasttext.cc",
|
|
pinned: true
|
|
},
|
|
{
|
|
caption: "Docusaurus",
|
|
image: "/img/docusaurus.svg",
|
|
infoLink: "https://www.docusaurus.io",
|
|
pinned: true
|
|
}
|
|
];
|
|
|
|
const siteConfig = {
|
|
title: "Docusaurus",
|
|
tagline: "Easy to Maintain Open Source Documentation Websites",
|
|
url: "https://docusaurus.io",
|
|
baseUrl: "/",
|
|
projectName: "Docusaurus",
|
|
cname: "docusaurus.io",
|
|
users,
|
|
editUrl:
|
|
"https://github.com/facebookexperimental/docusaurus/edit/master/docs/",
|
|
headerLinks: [
|
|
{ doc: "installation", label: "Docs" },
|
|
{ page: "help", label: "Help" },
|
|
{ blog: true, label: "Blog" },
|
|
{ languages: false },
|
|
{
|
|
href: "https://github.com/facebookexperimental/docusaurus",
|
|
label: "GitHub"
|
|
}
|
|
],
|
|
headerIcon: "img/docusaurus.svg",
|
|
footerIcon: "img/docusaurus_monochrome.svg",
|
|
favicon: "img/docusaurus.ico",
|
|
// See https://docusaurus.io/docs/search for more information about Aloglia
|
|
// search
|
|
algolia: {
|
|
apiKey: "3eb9507824b8be89e7a199ecaa1a9d2c",
|
|
indexName: "docusaurus"
|
|
},
|
|
customCssFileName: "custom.css", //the name of your custom css file
|
|
colors: {
|
|
primaryColor: "#2E8555",
|
|
secondaryColor: "#205C3B",
|
|
prismColor: "rgba(46, 133, 85, 0.03)"
|
|
}
|
|
};
|
|
|
|
module.exports = siteConfig;
|